Package org.apache.wicket.version.undo

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


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

        boolean formerValue = AbstractSubmitLink.this.defaultFormProcessing;

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 (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 (!strategy.equals(itemReuseStrategy))
    {
      if (isVersioned())
      {
        addStateChange(new Change()
        {
          private static final long serialVersionUID = 1L;

          private final IItemReuseStrategy old = itemReuseStrategy;
View Full Code Here

    {
      throw new IllegalArgumentException("markupId cannot be null");
    }
    if (!Objects.equal(this.markupId, markupId))
    {
      addStateChange(new Change()
      {
        private static final long serialVersionUID = 1L;
        private final String oldMarkupId = Fragment.this.markupId;

        public void undo()
View Full Code Here

   */
  public final void removeAll()
  {
    if (children != null)
    {
      addStateChange(new Change()
      {
        private static final long serialVersionUID = 1L;

        final Object removedChildren = MarkupContainer.this.children;

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

      public void onClick()
      {
        final int index = getList().indexOf(item.getModelObject());
        if (index != -1)
        {
          addStateChange(new Change()
          {
            private static final long serialVersionUID = 1L;

            final int oldIndex = index;
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.