Searched refs:source (Results 1 - 25 of 153) sorted by relevance

1234567

/glassfish-3.1.2/admin/jmx-remote/common/src/main/java/com/sun/enterprise/admin/jmx/remote/notification/
H A DNotificationWrapper.java56 private ObjectName source = null; field in class:NotificationWrapper
59 public NotificationWrapper(int type, ObjectName source, Notification notif) { argument
61 this.source = source;
65 public NotificationWrapper(ObjectName source, Notification notif) { argument
67 this.source = source;
76 return source;
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/modeler/modules/
H A DModelerSource.java75 protected Object source; field in class:ModelerSource
83 * @param source Introspected object or some other source
87 String type, Object source) throws Exception {
109 if( source instanceof URL ) {
110 URL url=(URL)source;
113 } else if( source instanceof File ) {
114 location=((File)source).getAbsolutePath();
115 return new FileInputStream((File)source);
116 } else if( source instanceo
86 loadDescriptors( Registry registry, String location, String type, Object source) argument
[all...]
H A DMbeansDescriptorsSerSource.java98 public void setSource( Object source ) {
99 this.source=source;
103 String type, Object source) throws Exception {
108 setSource(source);
118 if( source instanceof URL ) {
119 stream=((URL)source).openStream();
121 if( source instanceof InputStream ) {
122 stream=(InputStream)source;
125 throw new Exception( "Can't process "+ source);
102 loadDescriptors( Registry registry, String location, String type, Object source) argument
[all...]
H A DMbeansSourceMBean.java72 /** Set the source to be used to load the mbeans
74 * @param source File or URL
76 public void setSource( Object source );
86 /** Load the mbeans from the source. Called automatically on init()
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DRelationshipDescriptor.java59 private RelationRoleDescriptor source; // descriptor for source role field in class:RelationshipDescriptor
68 return (!source.getIsMany() && !sink.getIsMany());
72 return (!source.getIsMany() && sink.getIsMany());
76 return (source.getIsMany() && !sink.getIsMany());
80 return (source.getIsMany() && sink.getIsMany());
88 return ( (source.getOwner() == desc) || (sink.getOwner() == desc) );
93 return source;
95 public void setSource(RelationRoleDescriptor source) argument
97 this.source
[all...]
H A DArchiveOperationListener.java49 public void addArchiveEntries(Object source, Hashtable entries); argument
52 public void removeArchiveEntries(Object source, Vector entries); argument
/glassfish-3.1.2/admin/config-api/src/main/java/org/glassfish/config/support/
H A DTypedVetoableChangeSupport.java55 final private Object source; field in class:TypedVetoableChangeSupport
59 source = sourceBean;
65 super.fireVetoableChange(new TypedChangeEvent(source, propertyName, oldValue, newValue));
H A DTypedChangeEvent.java55 public TypedChangeEvent(Object source, String propertyName, Object oldValue, Object newValue) { argument
56 super(source, propertyName, oldValue, newValue);
60 public TypedChangeEvent(Object source, String propertyName, Object oldValue, Object newValue, Type type) { argument
61 super(source, propertyName, oldValue, newValue);
/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/spi/
H A DConnectionEvent.java46 /** The ConnectionEvent class provides information about the source of
120 * @param source ManagedConnection that is the
121 * source of the event
124 public ConnectionEvent(ManagedConnection source, int eid) { argument
125 super(source);
132 * @param source ManagedConnection that is the
133 * source of the event
137 public ConnectionEvent(ManagedConnection source, int eid, argument
139 super(source);
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/deployment/archive/
H A DCompositeHandler.java64 public boolean accept(ReadableArchive source, String entryName); argument
/glassfish-3.1.2/connectors/javax.resource/src/main/java/javax/resource/spi/work/
H A DWorkEvent.java101 * @param source The object on which the event initially
113 public WorkEvent(Object source, int type, Work work, WorkException exc) { argument
114 super(source);
123 * @param source The object on which the event initially
137 public WorkEvent(Object source, int type, Work work, WorkException exc, argument
139 this(source, type, work, exc);
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/ejb/
H A DEjbRelationNode.java66 RelationRoleDescriptor source = null; field in class:EjbRelationNode
94 if (source==null) {
95 source = (RelationRoleDescriptor) newDescriptor;
99 descriptor.setSource(source);
100 source.setPartner(sink);
101 source.setRelationshipDescriptor(descriptor);
103 sink.setPartner(source);
106 if ( source.getCMRField() != null && sink.getCMRField() != null )
/glassfish-3.1.2/deployment/javax.enterprise.deploy/src/main/java/javax/enterprise/deploy/spi/status/
H A DProgressEvent.java62 * @param source the object on which the Event initially occurred.
66 public ProgressEvent (Object source, TargetModuleID targetModuleID, argument
69 super(source);
/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/
H A Dcompress.c10 Compresses the source buffer into the destination buffer. The level
12 length of the source buffer. Upon entry, destLen is the total size of the
20 int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
23 const Bytef *source;
30 stream.next_in = (Bytef*)source;
33 /* Check for source > 64K on 16-bit machine: */
60 int ZEXPORT compress (dest, destLen, source, sourceLen)
63 const Bytef *source;
66 return compress2(dest, destLen, source, sourceLen, Z_DEFAULT_COMPRESSION);
H A Duncompr.c11 Decompresses the source buffer into the destination buffer. sourceLen is
12 the byte length of the source buffer. Upon entry, destLen is the total
25 int ZEXPORT uncompress (dest, destLen, source, sourceLen)
28 const Bytef *source;
34 stream.next_in = (Bytef*)source;
36 /* Check for source > 64K on 16-bit machine: */
/glassfish-3.1.2/common/glassfish-api/src/main/java/com/sun/appserv/server/
H A DLifecycleEvent.java80 * @param source The object on which the event initially occurred
84 public LifecycleEvent(Object source, int eventType, Object eventData, LifecycleEventContext ctx) { argument
85 super(source);
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/modeler/
H A DRegistryMBean.java84 * Load an extended mlet file. The source can be an URL, File or
90 * @param source InputStream or URL of the file
98 public List<ObjectName> loadMBeans( Object source, ClassLoader cl ) throws Exception; argument
172 /** Load descriptors. The source can be a File, URL pointing to an
178 * @param source
180 public void loadMetadata(Object source ) throws Exception;
/glassfish-3.1.2/appclient/server/core/src/main/java/org/glassfish/appclient/server/core/
H A DApplicationClientJarMaker.java87 * @param source is the abstract archive for the source module deployed
94 public void create(RootDeploymentDescriptor descriptor, ReadableArchive source, argument
97 create(descriptor, source, null, target, stubs, props);
103 * @param source is the abstract archive for the source module deployed
104 * @param source is the abstract archive for the generated xml directory
111 public void create(RootDeploymentDescriptor descriptor, ReadableArchive source, argument
121 ClientJarMakerUtils.populateModuleJar(source, source2, target);
133 URI appURI = new File(source
[all...]
H A DModuleClientJarMaker.java81 * @param source is the abstract archive for the source module deployed
88 public void create(RootDeploymentDescriptor descriptor, ReadableArchive source, argument
91 create(descriptor, source, null, target, stubs, props);
97 * @param source is the abstract archive for the source module deployed
105 public void create(RootDeploymentDescriptor descriptor, ReadableArchive source, argument
122 Application.class.cast(descriptor), source);
127 subSource = source.getSubArchive(entryName);
146 appclientSource = source
[all...]
H A DClientJarMaker.java62 * @param source is the abstract archive for the source module deployed
70 ReadableArchive source, WritableArchive target,
77 * @param source is the abstract archive for the source module deployed
85 public void create(RootDeploymentDescriptor descriptor, ReadableArchive source, ReadableArchive source2, WritableArchive target, ZipItem[] stubs, Properties props) argument
69 create(RootDeploymentDescriptor descriptor, ReadableArchive source, WritableArchive target, ZipItem[] stubs, Properties props) argument
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/monitoring/
H A DMessageTraceImpl.java68 private Endpoint source; field in class:MessageTraceImpl
106 return source;
141 public void setEndpoint(Endpoint source) { argument
142 this.source = source;
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/container/
H A DSniffer.java68 * @param source the file or directory abstracted as an archive
70 * resources from the source archive.
73 public boolean handles(ReadableArchive source, ClassLoader loader); argument
142 * specific archive source.
149 * @param source the contents of the application's archive
154 public Map<String,String> getDeploymentConfigurations(final ReadableArchive source) throws IOException; argument
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/jmx/
H A DAttributeChangeNotificationBuilder.java53 final ObjectName source)
55 super(AttributeChangeNotification.ATTRIBUTE_CHANGE, source);
52 AttributeChangeNotificationBuilder( final ObjectName source) argument
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/
H A DSaxParserHandlerBundled.java177 InputSource source = null;
179 source = new InputSource(stream);
180 source.setSystemId(url.toString());
182 return source;
/glassfish-3.1.2/web/war-util/src/main/java/org/glassfish/web/loader/
H A DResourceEntry.java94 * URL source from where the object was loaded.
96 public URL source = null; field in class:ResourceEntry

Completed in 81 milliseconds

1234567