Searched defs:type (Results 1 - 25 of 399) sorted by relevance

1234567891011>>

/glassfish-3.1.2/tests/quicklook/admincli/src/test/admincli/util/
H A DStreamGobbler.java58 String type; field in class:StreamGobbler
60 public StreamGobbler(InputStream is, String type) argument
63 this.type = type;
75 // System.out.println(type + ">" + line);
/glassfish-3.1.2/tests/quicklook/amx/src/test/amx/
H A DInterfaces.java215 final String type = Util.deduceType(clazz);
216 if ( mInterfaces.get(type) != null )
218 throw new IllegalArgumentException("Interface already exists for type " + type );
221 mInterfaces.put( type, clazz );
229 public Class<? extends AMXProxy> get(final String type) argument
231 Class<? extends AMXProxy> intf = mInterfaces.get(type);
235 // a type is not required to have an interface
236 //System.out.println( "No AMXProxy interface for type: " + type
[all...]
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/query/util/type/
H A DErrorType.java47 package com.sun.jdo.spi.persistence.support.sqlstore.query.util.type;
50 * This class represents the internal error type used during semantic analysis.
69 public boolean isCompatibleWith(Type type) argument
H A DNullType.java47 package com.sun.jdo.spi.persistence.support.sqlstore.query.util.type;
50 * This class represents the type of null.
69 * - an object of type NullType (to itself)
70 * - an object of type ClassType
72 public boolean isCompatibleWith(Type type) argument
74 return (type.equals(TypeTable.errorType) ||
75 (type instanceof NullType) ||
76 (type instanceof ClassType));
H A DPrimitiveType.java47 package com.sun.jdo.spi.persistence.support.sqlstore.query.util.type;
50 * Super class for boolean type, char type,
75 public boolean isCompatibleWith(Type type) argument
77 if (type instanceof PrimitiveType)
78 return ((PrimitiveType)type).clazz.isAssignableFrom(clazz);
H A DClassType.java47 package com.sun.jdo.spi.persistence.support.sqlstore.query.util.type;
74 * The associated type table.
121 * Checks the compatibility of this with the specified type.
123 * errorType, to the type of null (NullType), to itself
125 * @param type type for compatibility check
126 * @return true if this is compatible with type;
130 public boolean isCompatibleWith(Type type) argument
133 if (type instanceof ClassType)
135 result = ((ClassType)type)
[all...]
H A DType.java47 package com.sun.jdo.spi.persistence.support.sqlstore.query.util.type;
59 * The name of the type represented by this object.
75 * @param name name of the type represented by this
76 * @param clazz the class object for this type
85 * @param name name of the type represented by this
86 * @param clazz the class object for this type
87 * @param enumType the FieldTypeEnumeration value for this type
97 * Returns the name of the type.
112 * Checks type compatibility.
113 * @param type th
117 isCompatibleWith(Type type) argument
[all...]
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/admin/config/
H A DModelBinding.java55 * returns the model the annotated type is bound to
57 * @return the model type
59 public Class<?> type(); method in interface:ModelBinding
62 * Returns the getter method name defined on the {@link org.glassfish.api.admin.config.ModelBinding#type()}
63 * type annotated with model information like {@link org.jvnet.hk2.config.Attribute}
65 * @return the type getter method name
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/service/
H A DConnectorAdminServicesFactory.java54 * on the type of service.
56 * @param type Service type.
59 public static ConnectorService getService(String type) { argument
61 if (type == null) {
65 if (type.equals(ConnectorConstants.CCP)) {
67 } else if (type.equals(ConnectorConstants.CR)) {
69 } else if (type.equals(ConnectorConstants.RA)) {
71 } else if (type.equals(ConnectorConstants.SEC)) {
73 } else if (type
[all...]
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/util/
H A DConnectorConfigParserFactory.java53 * type of configurations to parse.
55 * @param type Parser class type.
58 public static ConnectorConfigParser getParser(String type) { argument
60 if (type == null) {
63 if (type.equals(ConnectorConfigParser.AOR)) {
65 } else if (type.equals(ConnectorConfigParser.MCF)) {
67 } else if (type.equals(ConnectorConfigParser.RA)) {
69 } else if (type.equals(ConnectorConfigParser.MSL)) {
/glassfish-3.1.2/deployment/admin/src/main/java/org/glassfish/deployment/admin/
H A DListLibrariesCommand.java73 String type = "common"; field in class:ListLibrariesCommand
86 if (type.equals("ext")) {
88 } else if (type.equals("app")) {
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DCMRFieldInfo.java57 public transient Class type; field in class:CMRFieldInfo
H A DDummyEjbDescriptor.java65 public void setType(String type) { argument
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/io/
H A DDeploymentDescriptorFileFactory.java99 public static DeploymentDescriptorFile getDDFileFor(XModuleType type) { argument
100 if (type==null) {
103 if (type.equals(XModuleType.EAR)) {
106 if (type.equals(XModuleType.EJB)) {
109 if (type.equals(XModuleType.WAR)) {
112 if (type.equals(XModuleType.RAR)) {
115 if (type.equals(XModuleType.CAR)) {
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/web/
H A DEnvironmentEntry.java45 public void setType(String type); argument
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/pi/
H A DInvocationPolicyFactory.java67 public Policy create_policy(int type, Any value) throws PolicyError { argument
69 if (type != INVOCATION_POLICY_TYPE.value) {
H A DOTSPolicyFactory.java64 public Policy create_policy(int type, Any value) throws PolicyError { argument
66 if (type != OTS_POLICY_TYPE.value) {
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/
H A DLifecycleEvent.java86 * @param type Event type (required)
88 public LifecycleEvent(Lifecycle lifecycle, String type) { argument
90 this(lifecycle, type, null);
99 * @param type Event type (required)
102 public LifecycleEvent(Lifecycle lifecycle, String type, Object data) { argument
106 this.type = type;
128 * The event type thi
130 private String type = null; field in class:LifecycleEvent
[all...]
/glassfish-3.1.2/admin/config-api/src/main/java/org/glassfish/config/support/
H A DCrudResolver.java53 * type on which a creation command invocation will be processed.
67 * @param type the type of the expected instance
70 <T extends ConfigBeanProxy> T resolve(AdminCommandContext context, Class<T> type); argument
75 @Inject(name="type", optional=true)
79 public <T extends ConfigBeanProxy> T resolve(AdminCommandContext context, Class<T> type) { argument
81 return defaultResolver.resolve(context, type);
/glassfish-3.1.2/admin/launcher/src/main/java/com/sun/enterprise/admin/launcher/
H A DGFLauncherFactory.java53 * @param type The type of server to launch.
55 * server type.
58 public static GFLauncher getInstance(RuntimeType type) throws GFLauncherException argument
60 switch(type)
/glassfish-3.1.2/admin/server-mgmt/src/main/java/com/sun/enterprise/admin/servermgmt/services/
H A DServiceFactory.java47 public static final Service getService(ServerDirs dirs, AppserverServiceType type) { argument
50 return new LinuxService(dirs, type);
53 //return new UbuntuService(dirs, type);
55 return new LinuxService(dirs, type);
57 return new SMFService(dirs, type);
59 return new WindowsService(dirs, type);
61 return new LinuxService(dirs, type);
/glassfish-3.1.2/common/annotation-framework/src/main/java/org/glassfish/apf/
H A DAnnotatedElementHandler.java57 * startElement is called with the annotated element value and its type
59 * @param type the annotated element type (class, field, method...)
64 public void startElement(ElementType type, AnnotatedElement element) argument
69 * endElement is called with the annotated element value and its type
71 * @param type the annotated element type (class, field, method...)
76 public void endElement(ElementType type, AnnotatedElement element) argument
/glassfish-3.1.2/common/annotation-framework/src/main/java/org/glassfish/apf/impl/
H A DStackElement.java54 private final ElementType type; field in class:StackElement
58 public StackElement(ElementType type, AnnotatedElement element) { argument
59 this.type = type;
64 return type;
/glassfish-3.1.2/flashlight/framework/src/main/java/org/glassfish/flashlight/xml/
H A DProbeParam.java50 String type = null; field in class:ProbeParam
57 return type;
59 public ProbeParam(String name, String type) { argument
61 this.type = type;
66 return " Name=" + name + " Type=" + type;
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/admin/
H A DProcessEnvironment.java62 type = ProcessType.Other;
89 * @return the process type
92 return type;
97 * @param type of the execution environemnt
99 public ProcessEnvironment(ProcessType type) { argument
100 this.type = type;
103 final private ProcessType type; field in class:ProcessEnvironment

Completed in 1059 milliseconds

1234567891011>>