Searched defs:Type (Results 1 - 7 of 7) sorted by relevance

/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/embedded/
H A DContainerBuilder.java60 public enum Type { enum in interface:ContainerBuilder
/glassfish-3.1.2/admin/config-api/src/main/java/org/glassfish/config/support/
H A DTypedChangeEvent.java51 public enum Type {ADD, REMOVE, CHANGE}; enum in class:TypedChangeEvent
53 final Type type;
57 type=Type.CHANGE;
60 public TypedChangeEvent(Object source, String propertyName, Object oldValue, Object newValue, Type type) {
65 public Type getType() {
/glassfish-3.1.2/common/scattered-archive-api/src/main/java/org/glassfish/embeddable/archive/
H A DScatteredArchive.java70 * <a name="l60"> ScatteredArchive archive = </span><span class="s2">new </span><span class="s1">ScatteredArchive(</span><span class="s4">&quot;testapp&quot;</span><span class="s1">, ScatteredArchive.Type.WAR);
90 Type type;
104 public ScatteredArchive(String name, Type type) {
113 this.metadataEntryPrefix = (type == Type.WAR) ? "WEB-INF/" : "META-INF/";
119 * Follows the same semantics as {@link ScatteredArchive(String, ScatteredArchive.Type, File)} constructor.
122 // public ScatteredArchive(String name, Type type, String rootDirectory) {
154 public ScatteredArchive(String name, Type type, File rootDirectory)
173 * {@link ScatteredArchive(String, ScatteredArchive.Type, String, File[])} constructor.
177 // public ScatteredArchive(String name, Type type, String[] classpaths) {
194 * @param type Type o
394 public enum Type { enum in class:ScatteredArchive
[all...]
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/universal/xml/
H A DSysPropsHandler.java63 enum Type { enum in class:SysPropsHandler
85 void add(Type type, Map<String, String> map) {
104 void add(Type type, String name, String value) {
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/query/util/type/
H A DType.java42 * Type.java
56 public abstract class Type class
69 * The FieldTypeEnumeration constant for this Type.
74 * Creates a new Type object with the specified name.
78 public Type(String name, Class clazz) method in class:Type
84 * Creates a new Type object with the specified name.
89 public Type(String name, Class clazz, int enumType) method in class:Type
117 public abstract boolean isCompatibleWith(Type type);
155 else if (obj instanceof Type)
156 return this.name.equals(((Type)ob
[all...]
/glassfish-3.1.2/appclient/server/core/src/main/java/org/glassfish/appclient/server/core/jws/
H A DXPathToDeveloperProvidedContentRefs.java94 private enum Type { enum in class:XPathToDeveloperProvidedContentRefs
99 Type(final String propName) { method in class:XPathToDeveloperProvidedContentRefs.Type
118 parse(p, XPathToDeveloperProvidedContentRefs.Type.STATIC));
120 parse(p, XPathToDeveloperProvidedContentRefs.Type.DYNAMIC));
132 private static List<XPathToDeveloperProvidedContentRefs> parse(final Properties p, Type type) {
136 result.add((type == Type.STATIC) ? new XPathToStaticContent(ref) : new XPathToDynamicContent(ref));
H A DCombinedXPath.java129 private static enum Type { enum in class:CombinedXPath
136 Type(final String propName) { method in class:CombinedXPath.Type
144 // result.addAll(CombinedXPath.parse(p, CombinedXPath.Type.OWNED));
145 result.addAll(CombinedXPath.parse(p, CombinedXPath.Type.DEFAULTED));
146 result.addAll(CombinedXPath.parse(p, CombinedXPath.Type.MERGED));
161 Type type) {

Completed in 23 milliseconds