| 1 |  |  package org.kuali.rice.core.api.uif; | 
  | 2 |  |   | 
  | 3 |  |  import org.kuali.rice.core.api.mo.AbstractDataTransferObject; | 
  | 4 |  |  import org.kuali.rice.core.api.mo.ModelBuilder; | 
  | 5 |  |  import org.kuali.rice.core.api.mo.ModelObjectComplete; | 
  | 6 |  |   | 
  | 7 |  |  import javax.xml.bind.annotation.XmlAccessType; | 
  | 8 |  |  import javax.xml.bind.annotation.XmlAccessorType; | 
  | 9 |  |  import javax.xml.bind.annotation.XmlType; | 
  | 10 |  |   | 
  | 11 |  |   | 
  | 12 |  |   | 
  | 13 |  |   | 
  | 14 |  |  @XmlAccessorType(XmlAccessType.NONE) | 
  | 15 |  |  @XmlType(name = RemotableAbstractControl.Constants.TYPE_NAME) | 
  | 16 |  |  public abstract class RemotableAbstractControl extends AbstractDataTransferObject implements Control { | 
  | 17 |  |   | 
  | 18 |  |       | 
  | 19 |  |   | 
  | 20 |  |   | 
  | 21 |  |      @SuppressWarnings("unused") | 
  | 22 | 45 |      RemotableAbstractControl() { | 
  | 23 |  |   | 
  | 24 | 45 |      } | 
  | 25 |  |   | 
  | 26 | 0 |      abstract static class Builder implements Control, ModelBuilder { | 
  | 27 |  |          Builder() { | 
  | 28 | 39 |              super(); | 
  | 29 | 39 |          } | 
  | 30 |  |   | 
  | 31 |  |           | 
  | 32 |  |          public abstract RemotableAbstractControl build(); | 
  | 33 |  |      } | 
  | 34 |  |   | 
  | 35 |  |       | 
  | 36 |  |   | 
  | 37 |  |   | 
  | 38 | 0 |      static class Constants { | 
  | 39 |  |          final static String TYPE_NAME = "AbstractControlType"; | 
  | 40 |  |      } | 
  | 41 |  |  } |