Package org.apache.wicket.version.undo

Examples of org.apache.wicket.version.undo.Change


    if (columns != cols)
    {
      if (isVersioned())
      {
        addStateChange(new Change()
        {
          private static final long serialVersionUID = 1L;

          final int old = columns;
View Full Code Here


    if (this.rows != rows)
    {
      if (isVersioned())
      {
        addStateChange(new Change()
        {
          private static final long serialVersionUID = 1L;

          final int old = GridView.this.rows;
View Full Code Here

    if (itemsPerPage != items)
    {
      if (isVersioned())
      {
        addStateChange(new Change()
        {
          private static final long serialVersionUID = 1L;

          final int old = itemsPerPage;
View Full Code Here

    if (currentPage != page)
    {
      if (isVersioned())
      {
        addStateChange(new Change()
        {
          private static final long serialVersionUID = 1L;

          private final int old = currentPage;
View Full Code Here

    if (!strategy.equals(itemReuseStrategy))
    {
      if (isVersioned())
      {
        addStateChange(new Change()
        {
          private static final long serialVersionUID = 1L;

          private final IItemReuseStrategy old = itemReuseStrategy;
View Full Code Here

   */
  public final Button setDefaultFormProcessing(boolean defaultFormProcessing)
  {
    if (this.defaultFormProcessing != defaultFormProcessing)
    {
      addStateChange(new Change()
      {
        private static final long serialVersionUID = 1L;

        boolean formerValue = Button.this.defaultFormProcessing;

View Full Code Here

      @Override
      public void onClick()
      {
        i++;
        addStateChange(new Change()
        {
          @Override
          public void undo()
          {
          }
View Full Code Here

    // get the participant to set as active
    final IBreadCrumbParticipant participant = getParticipant(active.getComponent().getId());

    // add back button support
    addStateChange(new Change()
    {
      private static final long serialVersionUID = 1L;

      public void undo()
      {
View Full Code Here

      throw new IllegalStateException("The model has no active bread crumb. Before using " +
        this + ", you have to have at least one bread crumb in the model");
    }

    // add back button support
    addStateChange(new Change()
    {
      private static final long serialVersionUID = 1L;

      public void undo()
      {
View Full Code Here

   *
   * @param selected
   */
  public void setSelected(Contact selected)
  {
    addStateChange(new Change()
    {
      private final Contact old = BasePage.this.selected;

      public void undo()
      {
View Full Code Here

TOP

Related Classes of org.apache.wicket.version.undo.Change

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.