Searched defs:typeName (Results 1 - 10 of 10) sorted by relevance

/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/
H A DUtil.java118 public static String getName(String typeName) { argument
119 return getName(typeName, '.');
125 public static String getName(String typeName, char delimiter) { argument
126 if ((typeName == null) || ("".equals(typeName))) {
127 return typeName;
130 //elimiate last char from typeName if its a delimiter
131 if (typeName.length() - 1 == typeName.lastIndexOf(delimiter)) {
132 typeName
[all...]
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/
H A DOpenMBeanUtil.java298 @param typeName the arbitrary name of the OpenType to be used
303 final String typeName,
333 typeName,
346 @param typeName the arbitrary name of the OpenType to be used
351 final String typeName,
356 final CompositeType type = mapToCompositeType(typeName, description, map, null);
302 mapToCompositeType( final String typeName, final String description, final Map<String, ?> map, CompositeTypeFromNameCallback callback) argument
350 mapToCompositeData( final String typeName, final String description, final Map<String, Object> map) argument
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/base/
H A DCallableStatementWrapper.java543 * <i>typeName</i> parameter is ignored.
551 * @param typeName the fully-qualified name of an SQL structured type
556 public void registerOutParameter(int paramIndex, int sqlType, String typeName) throws SQLException { argument
557 callableStatement.registerOutParameter(paramIndex, sqlType, typeName);
636 * typeName parameter is ignored.
644 * @param typeName the fully-qualified name of an SQL structured type
649 public void registerOutParameter(String parameterName, int sqlType, String typeName) throws SQLException { argument
650 callableStatement.registerOutParameter(parameterName, sqlType, typeName);
1145 * typeName is ignored.
1149 * @param typeName th
1155 setNull(String parameterName, int sqlType, String typeName) argument
[all...]
H A DPreparedStatementWrapper.java712 * typeName is ignored.
716 * @param typeName the fully-qualified name of an SQL user-defined type;
721 public void setNull(int paramIndex, int sqlType, String typeName) throws SQLException { argument
722 preparedStatement.setNull(paramIndex, sqlType, typeName);
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc40/src/main/java/com/sun/gjc/spi/jdbc40/
H A DConnectionHolder40.java421 * @param typeName the SQL name of the type the elements of the array map to. The typeName is a
426 * @throws java.sql.SQLException if a database error occurs, the typeName is null or this method is called on a closed connection
431 public Array createArrayOf(String typeName, Object[] elements) throws SQLException { argument
434 return con.createArrayOf(typeName, elements);
440 * @param typeName the SQL type name of the SQL structured type that this <code>Struct</code>
441 * object maps to. The typeName is the name of a user-defined type that
446 * @throws java.sql.SQLException if a database error occurs, the typeName is null or this method is called on a closed connection
451 public Struct createStruct(String typeName, Object[] attributes) throws SQLException { argument
454 return con.createStruct(typeName, attribute
[all...]
/glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/
H A DRuntimeModel.java825 String typeName = null;
831 typeName = getNameForType(
835 typeName = type.getName();
838 return typeName;
856 private Class getTypeForName (String typeName) argument
858 Class clazz = JavaTypeHelper.getPrimitiveClass(typeName);
861 clazz = (Class)getClass(typeName);
/glassfish-3.1.2/admin/monitor/src/main/java/com/sun/enterprise/admin/monitor/registry/
H A DMonitoredObjectType.java178 private String typeName; field in class:MonitoredObjectType
201 this.typeName = type;
203 objectMap.put(this.typeName, this);
211 return typeName;
231 return typeName;
235 * @param typeName string representing MonitoredObjectType
239 public static MonitoredObjectType getMonitoredObjectType(String typeName) { argument
240 MonitoredObjectType type = getMonitoredObjectTypeOrNull(typeName);
242 //String msg = localStrings.getString( "admin.monitor.unknown_type_name", typeName );
243 String msg = "admin.monitor.unknown_type_name:"+typeName;
254 getMonitoredObjectTypeOrNull(String typeName) argument
[all...]
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/impl/
H A DFieldAction.java157 String typeName() { method in class:FieldAction
348 = jdoMetaData.isMutableSecondClassObjectType(typeName());
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/connection/
H A DConnectionImpl.java572 public Array createArrayOf(String typeName, Object[] elements) throws SQLException { argument
576 public Struct createStruct(String typeName, Object[] attributes) throws SQLException { argument
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc40/
H A Djdbc40.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/sql/ javax/sql/StatementEvent.class StatementEvent. ...

Completed in 98 milliseconds