Skip to content

Commit

Permalink
Experimental feature will not be supported anymore (and really didn't…
Browse files Browse the repository at this point in the history
… have any use at it's current state

git-svn-id: https://svn.apache.org/repos/asf/incubator/wicket/trunk@457917 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
Eelco Hillenius committed Oct 25, 2005
1 parent 19395bb commit 829caa5
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 266 deletions.
Expand Up @@ -15,19 +15,32 @@
* License for the specific language governing permissions and limitations under
* the License.
*/
package wicket.pageset;

package wicket;


/**
* TODO docme
*
* @author Jonathan Locke
* @author Eelco Hillenius
*/
public class OrderedPageSetMap
public interface IAuthorizationStrategy
{
/**
* Constructor
* Gets whether the given component may be rendered.
*
* @param c
* the component
* @return whether the given component may be rendered
*/
boolean allowRender(Component c);

/**
* Checks whether the given component may be created.
*
* @param c
* the component
* @return whether the given component may be created
*/
public OrderedPageSetMap()
{
super();
}
boolean allowCreation(Component c);
}
10 changes: 0 additions & 10 deletions wicket/src/java/wicket/Page.java
Expand Up @@ -1032,16 +1032,6 @@ private final void init()

// Set versioning of page based on default
setVersioned(Application.get().getSettings().getVersionPagesByDefault());

// Loop through the PageSet objects for this Page
for (final Iterator iterator = getPageSets(); iterator.hasNext();)
{
// Get next PageSet
final PageSet pageSet = (PageSet)iterator.next();

// Let PageSet initialize the Page
pageSet.init(this);
}
}

/**
Expand Down
66 changes: 0 additions & 66 deletions wicket/src/java/wicket/PageSet.java

This file was deleted.

46 changes: 0 additions & 46 deletions wicket/src/java/wicket/PageSetMap.java

This file was deleted.

66 changes: 0 additions & 66 deletions wicket/src/java/wicket/pageset/InheritancePageSetMap.java

This file was deleted.

70 changes: 0 additions & 70 deletions wicket/src/java/wicket/pageset/PackagePageSetMap.java

This file was deleted.

0 comments on commit 829caa5

Please sign in to comment.