Searched defs:object (Results 1 - 25 of 48) sorted by relevance

12

/glassfish-3.1.2/tests/quicklook/ejb/cmp/src/java/util/
H A DDebug.java60 public static final void print(String msg, Object object) { argument
64 System.err.println(" " + object.getClass().getName());
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/services/impl/monitor/stats/
H A DStatsProvider.java50 * Get object, from which <tt>StatsProvider</tt> can get statistics directly
58 * Set object, from which <tt>StatsProvider</tt> can get statistics directly
61 * @param object statistics
63 public void setStatsObject(Object object); argument
H A DKeepAliveStatsProvider.java84 public void setStatsObject(Object object) { argument
85 if (object instanceof KeepAliveStats) {
86 keepAliveStats = (KeepAliveStats) object;
H A DThreadPoolStatsProvider.java84 public void setStatsObject(Object object) { argument
85 if (object instanceof ExtendedThreadPool) {
86 threadPool = (ExtendedThreadPool) object;
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DFieldDescriptor.java76 * Constructs a field descriptor from the supplied java.lang.reflect.Field object.
86 public boolean equals(Object object) { argument
87 if (object instanceof FieldDescriptor) {
88 FieldDescriptor otherFieldDescriptor = (FieldDescriptor) object;
H A DJmsDestinationReferenceDescriptor.java46 * I am an object representing a dependency on a JMS Destination
156 public boolean equals(Object object) { argument
157 if (object instanceof JmsDestinationReference) {
158 JmsDestinationReference destReference = (JmsDestinationReference) object;
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/util/pool/
H A DObjectFactory.java52 * An object factory that 'knows' how to create / destroy objects
57 * Create an object. Called from Pool.getObject(param)
63 * Destroy an object. Called from Pool.destroyObject.
65 public void destroy(Object object); argument
/glassfish-3.1.2/tests/community/persistence/servlet-jpa-app/src/java/persistence/
H A DWebCustomer.java146 * Returns a hash code value for the object. This implementation computes
147 * a hash code value based on the id fields in this object.
148 * @return a hash code value for this object.
158 * Determines whether another object is equal to this WebCustomer. The result is
159 * <code>true</code> if and only if the argument is not null and is a WebCustomer object that
160 * has the same id field values as this object.
161 * @param object the reference object with which to compare
162 * @return <code>true</code> if this object is the same as the argument;
166 public boolean equals(Object object) { argument
[all...]
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/CosTransactions/
H A DCoordinatorSynchronizationImpl.java81 * Synchronization object registered with the subordinate should be called
121 /**Sets up a new CoordinatorSynchronizationImpl object with the Coordinator reference so
215 /**Returns the CORBA Object which represents this object.
219 * @return The CORBA object.
223 Synchronization object() { method in class:CoordinatorSynchronizationImpl
258 /**Destroys the CoordinatorSynchronizationImpl object.
282 * Returns the CoordinatorSynchronizationImpl which serves the given object.
286 * @return The CoordinatorSynchronizationImpl object which serves it.
294 // servant from our local POA for a proxy sync object.
H A DRecoveryCoordinatorImpl.java45 // Description: Transaction RecoveryCoordinator object implementation.
120 * objects used for the same Coordinator object within a process. This is
121 * so that they each get a unique object identifier.
149 * Cleans up the state of the object.
166 * Informs the Transaction Service that the given Resource object has been
169 * If the transaction outcome is unknown, the Resource object passed
449 * This is done when the RecoveryCoordinator object is recreated after the
458 * @param key The key for the object.
486 * Returns the CORBA Object which represents this object.
490 * @return The CORBA object
494 synchronized final RecoveryCoordinator object() { method in class:RecoveryCoordinatorImpl
[all...]
H A DCoordinatorResourceImpl.java150 // Inform the Coordinator that this is the object that normally terminates
158 /**Cleans up the state of the object.
174 /**Informs the CoordinatorResourceImpl object that the transaction it
198 /**Requests the prepare phase vote from the object.
242 // If the transaction that this object represents has already been rolled
291 /**Informs the object that the transaction is to be committed.
334 // If the transaction that this object represents has already been completed,
335 // raise a heuristic exception if necessary. This object must wait for a
374 // this object to here as the constructor is now called
382 // an object no
887 CoordinatorResource object() { method in class:CoordinatorResourceImpl
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/digester/
H A DArrayStack.java185 * specified object exists on this stack, where the top-most element is
186 * considered to be at distance <code>1</code>. If the object is not
191 * @param object the object to be searched for
192 * @return the 1-based depth into the stack of the object, or -1 if not found
194 public int search(E object) { argument
199 if ((object == null && current == null) ||
200 (object != null && object.equals(current))) {
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/util/
H A DAssertion.java58 static protected final void affirm(Object object) { argument
59 if (object == null)
63 static protected final void affirm(Object object, String msg) { argument
64 if (object == null)
/glassfish-3.1.2/tests/embedded/cdi_ejb_jpa/src/main/java/org/glassfish/tests/embedded/cdi_ejb_jpa/
H A DPerson.java76 public boolean equals(Object object) { argument
78 if (!(object instanceof Person)) {
81 Person other = (Person) object;
/glassfish-3.1.2/tests/embedded/glassfish_resources_xml/src/main/java/org/glassfish/tests/embedded/cdi_ejb_jpa/
H A DPerson.java76 public boolean equals(Object object) { argument
78 if (!(object instanceof Person)) {
81 Person other = (Person) object;
/glassfish-3.1.2/web/weld-integration/src/main/java/org/glassfish/weld/
H A DACLSingletonProvider.java180 public void set(T object) argument
183 store.put(getClassLoader(), object);
/glassfish-3.1.2/common/container-common/src/main/java/com/sun/enterprise/container/common/spi/
H A DManagedBeanManager.java72 public boolean isManagedBean(Object object); argument
82 * @param bundle BundleDescriptor (passed as object because we can't
/glassfish-3.1.2/connectors/connectors-internal-api/src/main/java/com/sun/appserv/connectors/internal/api/
H A DResourceNamingService.java86 public void publishObject(GenericResourceInfo resourceInfo, String jndiName, Object object,boolean rebind) argument
115 JNDIBinding bindings = new ModuleScopedResourceBinding(getModuleScopedName(jndiName), object);
144 JNDIBinding bindings = new ApplicationScopedResourceBinding(getAppScopedName(jndiName), object);
151 bindAppScopedNameForAppclient(object, jndiName, applicationName);
153 namingManager.publishObject(jndiName, object, true);
157 public void publishObject(ResourceInfo resourceInfo, Object object,boolean rebind) throws NamingException{ argument
159 publishObject(resourceInfo, jndiName, object, rebind);
162 private void bindAppScopedNameForAppclient(Object object, String jndiName, String applicationName) argument
169 namingManager.publishObject(internalGlobalJavaAppName, object, true);
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/
H A DDirContextURLConnection.java90 * Note: All the object attribute names are the WebDAV names, not the HTTP
139 * Other unknown object.
141 protected Object object; field in class:DirContextURLConnection
173 * Connect to the DirContext, and retrive the bound object, as well as
174 * its attributes. If no object is bound with the name specified in the
206 object = context.lookup(path);
208 if (object instanceof Resource)
209 resource = (Resource) object;
210 if (object instanceof DirContext)
211 collection = (DirContext) object;
[all...]
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/provider/
H A DActionReportResultHtmlProvider.java142 Object object = entry.getValue();
143 if (object == null) {
145 } else if (object instanceof Collection) {
146 if (!((Collection) object).isEmpty()) {
147 Collection c = ((Collection) object);
159 } else if (object instanceof Map) {
160 if (!((Map) object).isEmpty()) {
161 Map m = (Map) object;
181 result.append("<li>").append(entry.getKey()).append(" : ").append(object.toString()).append("</li>");
352 protected String getHtmlRepresentation(Object object) { argument
[all...]
H A DActionReportResultJsonProvider.java126 JSONObject object = new JSONObject();
127 object.put("message", part.getMessage());
128 object.put("properties", part.getProps());
131 object.put("children", processChildren(part.getChildren()));
133 array.put(object);
149 protected JSONObject getExtraProperties(JSONObject object, Properties props) throws JSONException { argument
160 protected Object getJsonObject(Object object) throws JSONException { argument
162 if (object instanceof Collection) {
163 result = processCollection((Collection)object);
164 } else if (object instanceo
[all...]
H A DActionReportResultXmlProvider.java106 XmlMap object = new XmlMap("part");
107 object.put("message", part.getMessage());
108 object.put("properties", new XmlMap("properties", part.getProps()));
111 object.put("children", processChildren(part.getChildren()));
113 array.put(object);
129 protected XmlMap getExtraProperties(XmlObject object, Properties props) { argument
142 protected Object getXmlObject(Object object) { argument
144 if (object == null) {
146 } else if (object instanceof Collection) {
147 result = processCollection((Collection)object);
[all...]
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/util/
H A DMethodExecutor.java77 * @param method <code>Method</code> object.
115 * @param method <code>Method</code> object.
217 public Object invokeMethod(Object object, String methodName, argument
222 actualMethod = object.getClass().getMethod(methodName, valueTypes);
230 returnValue = actualMethod.invoke(object, values);
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/jta/
H A DTransactionImpl.java76 * OTS Control object for this transaction
103 * return the OTS Control object for this transaction.
114 * Complete the transaction represented by this Transaction object
155 * Rollback the transaction represented by this Transaction object.
285 public boolean equals(Object object) { argument
286 if ((object instanceof TransactionImpl) == false) {
288 } else if (object == this) {
291 return gtid.equals(((TransactionImpl) object).gtid);
/glassfish-3.1.2/common/container-common/src/main/java/com/sun/enterprise/container/common/impl/managedbean/
H A DManagedBeanManagerImpl.java491 // This is the object passed back to the caller.
565 // This is the object passed back to the caller.
587 public boolean isManagedBean(Object object) { argument
592 return interceptorBuilderFactory.isClientProxy(object);

Completed in 119 milliseconds

12