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 | |
|
6 | |
import javax.xml.bind.annotation.XmlAccessType; |
7 | |
import javax.xml.bind.annotation.XmlAccessorType; |
8 | |
import javax.xml.bind.annotation.XmlType; |
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
@XmlAccessorType(XmlAccessType.NONE) |
14 | |
@XmlType(name = RemotableAbstractWidget.Constants.TYPE_NAME) |
15 | |
public abstract class RemotableAbstractWidget extends AbstractDataTransferObject implements Widget { |
16 | |
|
17 | |
|
18 | |
|
19 | |
|
20 | |
@SuppressWarnings("unused") |
21 | 20 | RemotableAbstractWidget() { |
22 | |
|
23 | 20 | } |
24 | |
|
25 | 0 | public abstract static class Builder implements Widget, ModelBuilder { |
26 | |
Builder() { |
27 | 14 | super(); |
28 | 14 | } |
29 | |
|
30 | |
|
31 | |
public abstract RemotableAbstractWidget build(); |
32 | |
} |
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | 0 | static class Constants { |
38 | |
final static String TYPE_NAME = "AbstractWidgetType"; |
39 | |
} |
40 | |
} |