| /glassfish-3.1.2/ejb/ejb-container/src/main/java/org/glassfish/ejb/security/application/ |
| H A D | EJBSecurityManager.java | 402 // utility to collect role permisisions in table of collections 403 private static HashMap addToRolePermissionsTable(HashMap table, argument 407 if (table == null) { 408 table = new HashMap(); 412 (Permissions) table.get(roleName); 415 table.put(roleName, rolePermissions); 424 return table;
|
| /glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/gui/ |
| H A D | ResultsPanel.java | 55 import javax.swing.table.DefaultTableModel; 74 JTable table; field in class:ResultsPanel 136 // set up result table 138 table = new JTable(tableModel); 140 table.getAccessibleContext().setAccessibleName( 145 table.getAccessibleContext().setAccessibleDescription( 149 "This is a table of items")); // NOI18N 150 table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION); 151 tableScrollPane = new JScrollPane(table); 177 table [all...] |
| /glassfish-3.1.2/admingui/common/src/main/resources/js/ |
| H A D | adminjsf.js | 404 //toggle.src = "#{request.contextPath}/theme/woodstock4_3/suntheme/images/table/grouprow_expanded.gif"; 408 //toggle.src = "#{request.contextPath}/theme/woodstock4_3/suntheme/images/table/grouprow_collapsed.gif"; 2042 admingui.table = { 2046 admingui.table.changeButtons(buttons,tableId); 2054 admingui.table.changeButtons(buttons,tableId); 2066 admingui.table.changeButtons(buttons,tableId); 2071 var table = document.getElementById(tableId);// + ":_table"); 2072 var selections = table.getAllSelectedRowsCount(); 2087 var table = document.getElementById(tableId); 2088 table [all...] |
| /glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/loader/ |
| H A D | ASURLClassLoader.java | 230 if (u.table != null) { 231 u.table.clear(); 232 u.table = null; 963 volatile Hashtable<String,String> table = null; field in class:ASURLClassLoader.URLEntry 983 table = new Hashtable<String,String>(); 997 table.put(curEntry.getName(), curEntry.getName()); 1003 fillTable(file, table, ""); 1019 *Adds a file (or, if a directory, the directory's contents) to the table 1043 if (table.size() == 0) { 1049 *in a directory after the loader was created and its table o [all...] |
| /glassfish-3.1.2/installer/src/cpp/share/launcher/ |
| H A D | zip_util.c | 119 if (zip->table != 0) 120 free(zip->table); 298 unsigned short *table; local 364 /* Allocate hash table */ 367 table = zip->table = calloc(tablelen, sizeof(unsigned short)); 368 if (table == 0) 376 table[i] = ZIP_ENDCHAIN; 469 * Finally we can add the entry to the hash table 472 zc->next = table[hs [all...] |
| H A D | zip_util.h | 156 * In-memory hash table cell. 186 unsigned short *table; /* Hash chain heads: indexes into entries */ member in struct:jzfile
|
| /glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/ |
| H A D | infutil.h | 19 TABLE, /* get table lengths */ 38 uInt table; /* table lengths (14 bits) */ member in struct:inflate_blocks_state::__anon16::__anon17
|
| H A D | zutil.c | 119 local ptr_table table[MAX_PTR]; variable 120 /* This table is used to remember the original form of pointers 122 * Since MSDOS is not a preemptive multitasking OS, this table is not 142 table[next_ptr].org_ptr = buf; 147 table[next_ptr++].new_ptr = buf; 160 if (ptr != table[n].new_ptr) continue; 162 farfree(table[n].org_ptr); 164 table[n-1] = table[n];
|
| /glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/spi/ |
| H A D | ManagedConnectionFactory.java | 331 } else if (validationMethod.equals("table")) { 430 * by querying a table. 433 * @param tableName table which should be queried 802 * Sets the table checked for during validation 804 * @param table <code>String</code> 807 public void setValidationTableName(String table) { argument 808 spec.setDetail(DataSourceSpec.VALIDATIONTABLENAME, table); 812 * Returns the table checked for during validation 814 * @return table 823 * @param table <cod [all...] |
| /glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/ |
| H A D | ConstantPool.java | 453 private ConstBasicMemberRef searchTable(Vector table, String cname, argument 455 for (int i=0; i<table.size(); i++) { 456 ConstBasicMemberRef memRef = (ConstBasicMemberRef) table.elementAt(i);
|
| /glassfish-3.1.2/persistence/cmp/generator-database/src/main/java/com/sun/jdo/spi/persistence/generator/database/ |
| H A D | DBElementFactory.java | 99 * Create table and add to schema. 100 * @param schema Schema to which the table gets attached. 101 * @param tableName Name of the table without the schema name. 102 * @return TableElement for this table name 112 TableElement table = new TableElement(tableImpl, schema); 113 table.setName(DBIdentifier.create(fullName)); 114 table.setTableOrView(true); 115 schema.addTable(table); 116 return table; 120 * Create column and add to the table 126 createAndAttachColumn(String columnName, TableElement table, JDBCInfo ji) argument 172 createAndAttachPrimaryKey(TableElement table, String pKeyName) argument [all...] |
| H A D | DDLGenerator.java | 93 * <li>create table DDL destined for human readers</li> 94 * <li>create table DDL destined for a JDBC connection</li> 95 * <li>drop table DDL destined for human readers</li> 96 * <li>drop table DDL destined for a JDBC connection</li> 149 TableElement table = tables[ii]; 152 createCreateTableDDL(table, mappingPolicy)); 154 if (table.getPrimaryKey() != null) { 155 createIndexDDL.add(createIndexDDL(table)); 158 createAddConstraintsDDL(table)); 160 createDropConstraintsDDL(table)); 332 createCreateTableDDL(TableElement table, MappingPolicy mappingPolicy) argument 376 createIndexDDL(TableElement table) argument 390 createDropTableDDL(TableElement table) argument 404 createPrimaryKeyConstraint(TableElement table) argument 428 createAddConstraintsDDL(TableElement table) argument 465 createDropConstraintsDDL(TableElement table) argument [all...] |
| H A D | DatabaseGenerator.java | 90 * desired table name and hash class name for database generation. */ 149 * persistence class name to look up persistence class, desired table name 150 * for table name and hash class name for unique table name. Depending on 159 /** desired table name */ 169 * @param desiredTableName it can be used for table name 170 * @param hashClassName it can be used for unique table name 185 * @param desiredTableName name for creating table name 201 /** @return desired table name. */ 212 * class name and table name 375 createMappingClass( PersistenceClassElement pcClass, TableElement table) argument [all...] |
| /glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/mapping/ |
| H A D | MappingClassElement.java | 121 // TableElement table); 204 //======================= table handling =========================== 212 /** Scans through this mapping class looking for a table whose 214 * @param name name of the table to find. 215 * @return the meta data table whose name matches the name parameter 219 /** Convenience method which accepts a table element and attempts to add 220 * it as either a primary or secondary table depending on the existing list 221 * of tables and the foreign keys for the table. 222 * @param table table elemen 226 addTable(TableElement table) argument 232 setPrimaryTable(TableElement table) argument 242 addSecondaryTable(MappingTableElement parentTable, TableElement table) argument 251 removeTable(MappingTableElement table) argument [all...] |
| H A D | MappingReferenceKeyElement.java | 60 * join the primary table with a secondary table. It is analagous to a 67 * First, set a primary table for the mapping class. Doing this sets up a 68 * "fake primary key" for the associated mapping table element. Next, add 69 * a secondary table and set up the pairs which establish the connection 71 * key" information is necessary on the secondary table's mapping table, 82 //======================= table handling =========================== 84 /** Returns the mapping table element for this referencing key. 85 * @return the meta data table fo 93 setTable(MappingTableElement table) argument [all...] |
| H A D | MappingTableElement.java | 57 * This is an element which represents a database table. It exists (separately 59 * description of the underlying table that differs from the actual database. 60 * For example, mapping table contains a key which can be thought of as a 63 * database table and is typically the same, however the important point 64 * is that it is not a requirement. The table in the database may have a 66 * mapping table contains a list of reference keys which can be thought of as 68 * the primary table with a secondary table. These are analagous to 74 * Any mapping table elements which are designated as primary tables have 75 * their key set up automatically. Any mapping table element 97 setTable(TableElement table) argument 104 isEqual(TableElement table) argument 154 removeReference(MappingTableElement table) argument [all...] |
| /glassfish-3.1.2/persistence/cmp/model/src/main/java/com/sun/jdo/api/persistence/model/mapping/impl/ |
| H A D | MappingClassElementImpl.java | 356 /** Scans through this mapping class looking for a table whose 358 * @param name name of the table to find. 359 * @return the meta data table whose name matches the name parameter 367 MappingTableElement table = 370 if (table.getName().equals(name)) 371 return table; 377 /** Convenience method which accepts a table element and attempts to add 378 * it as either a primary or secondary table depending on the existing list 379 * of tables and the foreign keys for the table. 380 * @param table tabl 384 addTable(TableElement table) argument 469 setPrimaryTable(TableElement table) argument 541 addSecondaryTable(MappingTableElement parentTable, TableElement table) argument 604 removeTable(MappingTableElement table) argument [all...] |
| H A D | MappingFieldElementImpl.java | 352 protected boolean isMappedToTable (MappingTableElement table) argument 354 String tableName = table.getName();
|
| H A D | MappingReferenceKeyElementImpl.java | 91 * mapping table. 92 * @param table mapping table element to be used with this key. 94 public MappingReferenceKeyElementImpl (MappingTableElement table) argument 97 super(table.getName(), table.getDeclaringClass()); 98 setTableInternal(table); 115 //======================= table handling =========================== 117 /** Returns the mapping table element for this referencing key. 118 * @return the meta data table fo 126 setTable(MappingTableElement table) argument 147 setTableInternal(MappingTableElement table) argument [all...] |
| H A D | MappingTableElementImpl.java | 99 * table and declaring class. 100 * @param table table element to be used by the mapping table. 103 public MappingTableElementImpl (TableElement table, argument 106 this(table.toString(), declaringClass); 112 //======================= table handling =========================== 114 /** Returns the name of the table element used by this mapping table. 115 * @return the table nam 123 setTable(TableElement table) argument 163 isEqual(TableElement table) argument 318 removeReference(MappingTableElement table) argument 395 setTable(String table) argument [all...] |
| /glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/model/ |
| H A D | ClassDesc.java | 536 private void createSecondaryTableKey(TableDesc table, MappingReferenceKeyElementImpl mappingSecondaryKey) { argument 564 table.addSecondaryTableKey(new ReferenceKeyDesc(secondaryTable, referencingKey, referencedKey)); 565 secondaryTable.setPrimaryTableKey(new ReferenceKeyDesc(table, referencedKey, referencingKey)); 602 * 1) Ensure that every secondary table has a TableDesc 603 * 2) Every referencing key is the same length as the table's key 635 // Mark this table as a join table 823 * corresponding table. 833 TableDesc table = (TableDesc) iter.next(); 835 if (!table [all...] |
| H A D | ReferenceKeyDesc.java | 62 private TableDesc table; field in class:ReferenceKeyDesc 64 public ReferenceKeyDesc(TableDesc table, argument 69 this.table = table; 81 return table;
|
| /glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sql/generator/ |
| H A D | ColumnRef.java | 62 // the table this column belongs to 64 private QueryTable table; field in class:ColumnRef 84 QueryTable table) { 87 this.table = table; 129 return table; 83 ColumnRef(ColumnElement columnElement, QueryTable table) argument
|
| H A D | SelectStatement.java | 124 protected boolean isUpdateLockRequired(QueryTable table) { argument 126 && table.getTableDesc().isUpdateLockRequired(); 129 public void appendTableText(StringBuffer text, QueryTable table) { argument 130 super.appendTableText(text, table); 132 if (isUpdateLockRequired(table)) { 133 //Append eqivalent of "with (updlock)" to the table text 218 // Create the query filling in the column list, table name, etc. 249 // Without DISTINCT or when querying just one table, we can 254 // When selecting only one table, remove the DISTINCT 277 * The "outer" select on the primary table t 754 appendAnsiJoinTableText(StringBuffer text, QueryTable table) argument [all...] |
| H A D | Statement.java | 141 public void addQueryTable(QueryTable table) { argument 145 if (tableList.indexOf(table) == -1) { 146 tableList.add(table); 200 public void appendTableText(StringBuffer text, QueryTable table) { argument 201 appendQuotedText(text, table.getTableDesc().getName()); 203 text.append(table.getTableIndex()); 389 * The column has to be associated to the corresponding query table 400 QueryTable table = null; 404 while (iter.hasNext() && table == null) { 408 // at this point and includes only the table bein [all...] |