repo
stringlengths
7
58
path
stringlengths
12
218
func_name
stringlengths
3
140
original_string
stringlengths
73
34.1k
language
stringclasses
1 value
code
stringlengths
73
34.1k
code_tokens
sequence
docstring
stringlengths
3
16k
docstring_tokens
sequence
sha
stringlengths
40
40
url
stringlengths
105
339
partition
stringclasses
1 value
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/query/Criteria.java
Criteria.addNotBetween
public void addNotBetween(Object attribute, Object value1, Object value2) { // PAW // addSelectionCriteria(ValueCriteria.buildNotBeweenCriteria(attribute, value1, value2, getAlias())); addSelectionCriteria(ValueCriteria.buildNotBeweenCriteria(attribute, value1, value2, getUserAlias(attribute))); }
java
public void addNotBetween(Object attribute, Object value1, Object value2) { // PAW // addSelectionCriteria(ValueCriteria.buildNotBeweenCriteria(attribute, value1, value2, getAlias())); addSelectionCriteria(ValueCriteria.buildNotBeweenCriteria(attribute, value1, value2, getUserAlias(attribute))); }
[ "public", "void", "addNotBetween", "(", "Object", "attribute", ",", "Object", "value1", ",", "Object", "value2", ")", "{", "// PAW\r", "// addSelectionCriteria(ValueCriteria.buildNotBeweenCriteria(attribute, value1, value2, getAlias()));\r", "addSelectionCriteria", "(", "ValueCriteria", ".", "buildNotBeweenCriteria", "(", "attribute", ",", "value1", ",", "value2", ",", "getUserAlias", "(", "attribute", ")", ")", ")", ";", "}" ]
Adds NOT BETWEEN criteria, customer_id not between 1 and 10 @param attribute The field name to be used @param value1 The lower boundary @param value2 The upper boundary
[ "Adds", "NOT", "BETWEEN", "criteria", "customer_id", "not", "between", "1", "and", "10" ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/query/Criteria.java#L750-L755
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/query/Criteria.java
Criteria.addIn
public void addIn(Object attribute, Query subQuery) { // PAW // addSelectionCriteria(ValueCriteria.buildInCriteria(attribute, subQuery, getAlias())); addSelectionCriteria(ValueCriteria.buildInCriteria(attribute, subQuery, getUserAlias(attribute))); }
java
public void addIn(Object attribute, Query subQuery) { // PAW // addSelectionCriteria(ValueCriteria.buildInCriteria(attribute, subQuery, getAlias())); addSelectionCriteria(ValueCriteria.buildInCriteria(attribute, subQuery, getUserAlias(attribute))); }
[ "public", "void", "addIn", "(", "Object", "attribute", ",", "Query", "subQuery", ")", "{", "// PAW\r", "// addSelectionCriteria(ValueCriteria.buildInCriteria(attribute, subQuery, getAlias()));\r", "addSelectionCriteria", "(", "ValueCriteria", ".", "buildInCriteria", "(", "attribute", ",", "subQuery", ",", "getUserAlias", "(", "attribute", ")", ")", ")", ";", "}" ]
IN Criteria with SubQuery @param attribute The field name to be used @param subQuery The subQuery
[ "IN", "Criteria", "with", "SubQuery" ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/query/Criteria.java#L841-L846
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/query/Criteria.java
Criteria.addNotIn
public void addNotIn(String attribute, Query subQuery) { // PAW // addSelectionCriteria(ValueCriteria.buildNotInCriteria(attribute, subQuery, getAlias())); addSelectionCriteria(ValueCriteria.buildNotInCriteria(attribute, subQuery, getUserAlias(attribute))); }
java
public void addNotIn(String attribute, Query subQuery) { // PAW // addSelectionCriteria(ValueCriteria.buildNotInCriteria(attribute, subQuery, getAlias())); addSelectionCriteria(ValueCriteria.buildNotInCriteria(attribute, subQuery, getUserAlias(attribute))); }
[ "public", "void", "addNotIn", "(", "String", "attribute", ",", "Query", "subQuery", ")", "{", "// PAW\r", "// addSelectionCriteria(ValueCriteria.buildNotInCriteria(attribute, subQuery, getAlias()));\r", "addSelectionCriteria", "(", "ValueCriteria", ".", "buildNotInCriteria", "(", "attribute", ",", "subQuery", ",", "getUserAlias", "(", "attribute", ")", ")", ")", ";", "}" ]
NOT IN Criteria with SubQuery @param attribute The field name to be used @param subQuery The subQuery
[ "NOT", "IN", "Criteria", "with", "SubQuery" ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/query/Criteria.java#L853-L858
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/query/Criteria.java
Criteria.getGroupby
List getGroupby() { List result = _getGroupby(); Iterator iter = getCriteria().iterator(); Object crit; while (iter.hasNext()) { crit = iter.next(); if (crit instanceof Criteria) { result.addAll(((Criteria) crit).getGroupby()); } } return result; }
java
List getGroupby() { List result = _getGroupby(); Iterator iter = getCriteria().iterator(); Object crit; while (iter.hasNext()) { crit = iter.next(); if (crit instanceof Criteria) { result.addAll(((Criteria) crit).getGroupby()); } } return result; }
[ "List", "getGroupby", "(", ")", "{", "List", "result", "=", "_getGroupby", "(", ")", ";", "Iterator", "iter", "=", "getCriteria", "(", ")", ".", "iterator", "(", ")", ";", "Object", "crit", ";", "while", "(", "iter", ".", "hasNext", "(", ")", ")", "{", "crit", "=", "iter", ".", "next", "(", ")", ";", "if", "(", "crit", "instanceof", "Criteria", ")", "{", "result", ".", "addAll", "(", "(", "(", "Criteria", ")", "crit", ")", ".", "getGroupby", "(", ")", ")", ";", "}", "}", "return", "result", ";", "}" ]
Gets the groupby for ReportQueries of all Criteria and Sub Criteria the elements are of class FieldHelper @return List of FieldHelper
[ "Gets", "the", "groupby", "for", "ReportQueries", "of", "all", "Criteria", "and", "Sub", "Criteria", "the", "elements", "are", "of", "class", "FieldHelper" ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/query/Criteria.java#L929-L945
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/query/Criteria.java
Criteria.addGroupBy
public void addGroupBy(String[] fieldNames) { for (int i = 0; i < fieldNames.length; i++) { addGroupBy(fieldNames[i]); } }
java
public void addGroupBy(String[] fieldNames) { for (int i = 0; i < fieldNames.length; i++) { addGroupBy(fieldNames[i]); } }
[ "public", "void", "addGroupBy", "(", "String", "[", "]", "fieldNames", ")", "{", "for", "(", "int", "i", "=", "0", ";", "i", "<", "fieldNames", ".", "length", ";", "i", "++", ")", "{", "addGroupBy", "(", "fieldNames", "[", "i", "]", ")", ";", "}", "}" ]
Adds an array of groupby fieldNames for ReportQueries. @param fieldNames The groupby to set @deprecated use QueryByCriteria#addGroupBy
[ "Adds", "an", "array", "of", "groupby", "fieldNames", "for", "ReportQueries", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/query/Criteria.java#L988-L994
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/query/Criteria.java
Criteria.getSqlInLimit
private static int getSqlInLimit() { try { PersistenceBrokerConfiguration config = (PersistenceBrokerConfiguration) PersistenceBrokerFactory .getConfigurator().getConfigurationFor(null); return config.getSqlInLimit(); } catch (ConfigurationException e) { return 200; } }
java
private static int getSqlInLimit() { try { PersistenceBrokerConfiguration config = (PersistenceBrokerConfiguration) PersistenceBrokerFactory .getConfigurator().getConfigurationFor(null); return config.getSqlInLimit(); } catch (ConfigurationException e) { return 200; } }
[ "private", "static", "int", "getSqlInLimit", "(", ")", "{", "try", "{", "PersistenceBrokerConfiguration", "config", "=", "(", "PersistenceBrokerConfiguration", ")", "PersistenceBrokerFactory", ".", "getConfigurator", "(", ")", ".", "getConfigurationFor", "(", "null", ")", ";", "return", "config", ".", "getSqlInLimit", "(", ")", ";", "}", "catch", "(", "ConfigurationException", "e", ")", "{", "return", "200", ";", "}", "}" ]
read the prefetchInLimit from Config based on OJB.properties
[ "read", "the", "prefetchInLimit", "from", "Config", "based", "on", "OJB", ".", "properties" ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/query/Criteria.java#L1018-L1030
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/query/Criteria.java
Criteria.getUserAlias
private UserAlias getUserAlias(Object attribute) { if (m_userAlias != null) { return m_userAlias; } if (!(attribute instanceof String)) { return null; } if (m_alias == null) { return null; } if (m_aliasPath == null) { boolean allPathsAliased = true; return new UserAlias(m_alias, (String)attribute, allPathsAliased); } return new UserAlias(m_alias, (String)attribute, m_aliasPath); }
java
private UserAlias getUserAlias(Object attribute) { if (m_userAlias != null) { return m_userAlias; } if (!(attribute instanceof String)) { return null; } if (m_alias == null) { return null; } if (m_aliasPath == null) { boolean allPathsAliased = true; return new UserAlias(m_alias, (String)attribute, allPathsAliased); } return new UserAlias(m_alias, (String)attribute, m_aliasPath); }
[ "private", "UserAlias", "getUserAlias", "(", "Object", "attribute", ")", "{", "if", "(", "m_userAlias", "!=", "null", ")", "{", "return", "m_userAlias", ";", "}", "if", "(", "!", "(", "attribute", "instanceof", "String", ")", ")", "{", "return", "null", ";", "}", "if", "(", "m_alias", "==", "null", ")", "{", "return", "null", ";", "}", "if", "(", "m_aliasPath", "==", "null", ")", "{", "boolean", "allPathsAliased", "=", "true", ";", "return", "new", "UserAlias", "(", "m_alias", ",", "(", "String", ")", "attribute", ",", "allPathsAliased", ")", ";", "}", "return", "new", "UserAlias", "(", "m_alias", ",", "(", "String", ")", "attribute", ",", "m_aliasPath", ")", ";", "}" ]
Retrieves or if necessary, creates a user alias to be used by a child criteria @param attribute The alias to set
[ "Retrieves", "or", "if", "necessary", "creates", "a", "user", "alias", "to", "be", "used", "by", "a", "child", "criteria" ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/query/Criteria.java#L1055-L1075
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/query/Criteria.java
Criteria.setAlias
public void setAlias(String alias) { if (alias == null || alias.trim().equals("")) { m_alias = null; } else { m_alias = alias; } // propagate to SelectionCriteria,not to Criteria for (int i = 0; i < m_criteria.size(); i++) { if (!(m_criteria.elementAt(i) instanceof Criteria)) { ((SelectionCriteria) m_criteria.elementAt(i)).setAlias(m_alias); } } }
java
public void setAlias(String alias) { if (alias == null || alias.trim().equals("")) { m_alias = null; } else { m_alias = alias; } // propagate to SelectionCriteria,not to Criteria for (int i = 0; i < m_criteria.size(); i++) { if (!(m_criteria.elementAt(i) instanceof Criteria)) { ((SelectionCriteria) m_criteria.elementAt(i)).setAlias(m_alias); } } }
[ "public", "void", "setAlias", "(", "String", "alias", ")", "{", "if", "(", "alias", "==", "null", "||", "alias", ".", "trim", "(", ")", ".", "equals", "(", "\"\"", ")", ")", "{", "m_alias", "=", "null", ";", "}", "else", "{", "m_alias", "=", "alias", ";", "}", "// propagate to SelectionCriteria,not to Criteria\r", "for", "(", "int", "i", "=", "0", ";", "i", "<", "m_criteria", ".", "size", "(", ")", ";", "i", "++", ")", "{", "if", "(", "!", "(", "m_criteria", ".", "elementAt", "(", "i", ")", "instanceof", "Criteria", ")", ")", "{", "(", "(", "SelectionCriteria", ")", "m_criteria", ".", "elementAt", "(", "i", ")", ")", ".", "setAlias", "(", "m_alias", ")", ";", "}", "}", "}" ]
Sets the alias. Empty String is regarded as null. @param alias The alias to set
[ "Sets", "the", "alias", ".", "Empty", "String", "is", "regarded", "as", "null", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/query/Criteria.java#L1082-L1101
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/query/Criteria.java
Criteria.setAlias
public void setAlias(UserAlias userAlias) { m_alias = userAlias.getName(); // propagate to SelectionCriteria,not to Criteria for (int i = 0; i < m_criteria.size(); i++) { if (!(m_criteria.elementAt(i) instanceof Criteria)) { ((SelectionCriteria) m_criteria.elementAt(i)).setAlias(userAlias); } } }
java
public void setAlias(UserAlias userAlias) { m_alias = userAlias.getName(); // propagate to SelectionCriteria,not to Criteria for (int i = 0; i < m_criteria.size(); i++) { if (!(m_criteria.elementAt(i) instanceof Criteria)) { ((SelectionCriteria) m_criteria.elementAt(i)).setAlias(userAlias); } } }
[ "public", "void", "setAlias", "(", "UserAlias", "userAlias", ")", "{", "m_alias", "=", "userAlias", ".", "getName", "(", ")", ";", "// propagate to SelectionCriteria,not to Criteria\r", "for", "(", "int", "i", "=", "0", ";", "i", "<", "m_criteria", ".", "size", "(", ")", ";", "i", "++", ")", "{", "if", "(", "!", "(", "m_criteria", ".", "elementAt", "(", "i", ")", "instanceof", "Criteria", ")", ")", "{", "(", "(", "SelectionCriteria", ")", "m_criteria", ".", "elementAt", "(", "i", ")", ")", ".", "setAlias", "(", "userAlias", ")", ";", "}", "}", "}" ]
Sets the alias using a userAlias object. @param userAlias The alias to set
[ "Sets", "the", "alias", "using", "a", "userAlias", "object", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/query/Criteria.java#L1136-L1148
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/query/Criteria.java
Criteria.getPathClasses
public Map getPathClasses() { if (m_pathClasses.isEmpty()) { if (m_parentCriteria == null) { if (m_query == null) { return m_pathClasses; } else { return m_query.getPathClasses(); } } else { return m_parentCriteria.getPathClasses(); } } else { return m_pathClasses; } }
java
public Map getPathClasses() { if (m_pathClasses.isEmpty()) { if (m_parentCriteria == null) { if (m_query == null) { return m_pathClasses; } else { return m_query.getPathClasses(); } } else { return m_parentCriteria.getPathClasses(); } } else { return m_pathClasses; } }
[ "public", "Map", "getPathClasses", "(", ")", "{", "if", "(", "m_pathClasses", ".", "isEmpty", "(", ")", ")", "{", "if", "(", "m_parentCriteria", "==", "null", ")", "{", "if", "(", "m_query", "==", "null", ")", "{", "return", "m_pathClasses", ";", "}", "else", "{", "return", "m_query", ".", "getPathClasses", "(", ")", ";", "}", "}", "else", "{", "return", "m_parentCriteria", ".", "getPathClasses", "(", ")", ";", "}", "}", "else", "{", "return", "m_pathClasses", ";", "}", "}" ]
Gets the pathClasses. A Map containing hints about what Class to be used for what path segment If local instance not set, try parent Criteria's instance. If this is the top-level Criteria, try the m_query's instance @return Returns a Map
[ "Gets", "the", "pathClasses", ".", "A", "Map", "containing", "hints", "about", "what", "Class", "to", "be", "used", "for", "what", "path", "segment", "If", "local", "instance", "not", "set", "try", "parent", "Criteria", "s", "instance", ".", "If", "this", "is", "the", "top", "-", "level", "Criteria", "try", "the", "m_query", "s", "instance" ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/query/Criteria.java#L1287-L1311
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/platforms/PlatformWLOracle9iImpl.java
PlatformWLOracle9iImpl.beforeBatch
public void beforeBatch(PreparedStatement stmt) throws PlatformException { // Check for Oracle batching support final Method methodSetExecuteBatch; final Method methodSendBatch; methodSetExecuteBatch = ClassHelper.getMethod(stmt, "setExecuteBatch", PARAM_TYPE_INTEGER); methodSendBatch = ClassHelper.getMethod(stmt, "sendBatch", null); final boolean statementBatchingSupported = methodSetExecuteBatch != null && methodSendBatch != null; if (statementBatchingSupported) { try { // Set number of statements per batch methodSetExecuteBatch.invoke(stmt, PARAM_STATEMENT_BATCH_SIZE); m_batchStatementsInProgress.put(stmt, methodSendBatch); } catch (Exception e) { throw new PlatformException(e.getLocalizedMessage(), e); } } else { super.beforeBatch(stmt); } }
java
public void beforeBatch(PreparedStatement stmt) throws PlatformException { // Check for Oracle batching support final Method methodSetExecuteBatch; final Method methodSendBatch; methodSetExecuteBatch = ClassHelper.getMethod(stmt, "setExecuteBatch", PARAM_TYPE_INTEGER); methodSendBatch = ClassHelper.getMethod(stmt, "sendBatch", null); final boolean statementBatchingSupported = methodSetExecuteBatch != null && methodSendBatch != null; if (statementBatchingSupported) { try { // Set number of statements per batch methodSetExecuteBatch.invoke(stmt, PARAM_STATEMENT_BATCH_SIZE); m_batchStatementsInProgress.put(stmt, methodSendBatch); } catch (Exception e) { throw new PlatformException(e.getLocalizedMessage(), e); } } else { super.beforeBatch(stmt); } }
[ "public", "void", "beforeBatch", "(", "PreparedStatement", "stmt", ")", "throws", "PlatformException", "{", "// Check for Oracle batching support\r", "final", "Method", "methodSetExecuteBatch", ";", "final", "Method", "methodSendBatch", ";", "methodSetExecuteBatch", "=", "ClassHelper", ".", "getMethod", "(", "stmt", ",", "\"setExecuteBatch\"", ",", "PARAM_TYPE_INTEGER", ")", ";", "methodSendBatch", "=", "ClassHelper", ".", "getMethod", "(", "stmt", ",", "\"sendBatch\"", ",", "null", ")", ";", "final", "boolean", "statementBatchingSupported", "=", "methodSetExecuteBatch", "!=", "null", "&&", "methodSendBatch", "!=", "null", ";", "if", "(", "statementBatchingSupported", ")", "{", "try", "{", "// Set number of statements per batch\r", "methodSetExecuteBatch", ".", "invoke", "(", "stmt", ",", "PARAM_STATEMENT_BATCH_SIZE", ")", ";", "m_batchStatementsInProgress", ".", "put", "(", "stmt", ",", "methodSendBatch", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "throw", "new", "PlatformException", "(", "e", ".", "getLocalizedMessage", "(", ")", ",", "e", ")", ";", "}", "}", "else", "{", "super", ".", "beforeBatch", "(", "stmt", ")", ";", "}", "}" ]
Try Oracle update batching and call setExecuteBatch or revert to JDBC update batching. See 12-2 Update Batching in the Oracle9i JDBC Developer's Guide and Reference. @param stmt the prepared statement to be used for batching @throws PlatformException upon JDBC failure
[ "Try", "Oracle", "update", "batching", "and", "call", "setExecuteBatch", "or", "revert", "to", "JDBC", "update", "batching", ".", "See", "12", "-", "2", "Update", "Batching", "in", "the", "Oracle9i", "JDBC", "Developer", "s", "Guide", "and", "Reference", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/platforms/PlatformWLOracle9iImpl.java#L124-L150
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/platforms/PlatformWLOracle9iImpl.java
PlatformWLOracle9iImpl.addBatch
public void addBatch(PreparedStatement stmt) throws PlatformException { // Check for Oracle batching support final boolean statementBatchingSupported = m_batchStatementsInProgress.containsKey(stmt); if (statementBatchingSupported) { try { stmt.executeUpdate(); } catch (SQLException e) { throw new PlatformException(e.getLocalizedMessage(), e); } } else { super.addBatch(stmt); } }
java
public void addBatch(PreparedStatement stmt) throws PlatformException { // Check for Oracle batching support final boolean statementBatchingSupported = m_batchStatementsInProgress.containsKey(stmt); if (statementBatchingSupported) { try { stmt.executeUpdate(); } catch (SQLException e) { throw new PlatformException(e.getLocalizedMessage(), e); } } else { super.addBatch(stmt); } }
[ "public", "void", "addBatch", "(", "PreparedStatement", "stmt", ")", "throws", "PlatformException", "{", "// Check for Oracle batching support\r", "final", "boolean", "statementBatchingSupported", "=", "m_batchStatementsInProgress", ".", "containsKey", "(", "stmt", ")", ";", "if", "(", "statementBatchingSupported", ")", "{", "try", "{", "stmt", ".", "executeUpdate", "(", ")", ";", "}", "catch", "(", "SQLException", "e", ")", "{", "throw", "new", "PlatformException", "(", "e", ".", "getLocalizedMessage", "(", ")", ",", "e", ")", ";", "}", "}", "else", "{", "super", ".", "addBatch", "(", "stmt", ")", ";", "}", "}" ]
Try Oracle update batching and call executeUpdate or revert to JDBC update batching. @param stmt the statement beeing added to the batch @throws PlatformException upon JDBC failure
[ "Try", "Oracle", "update", "batching", "and", "call", "executeUpdate", "or", "revert", "to", "JDBC", "update", "batching", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/platforms/PlatformWLOracle9iImpl.java#L158-L177
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/platforms/PlatformWLOracle9iImpl.java
PlatformWLOracle9iImpl.executeBatch
public int[] executeBatch(PreparedStatement stmt) throws PlatformException { // Check for Oracle batching support final Method methodSendBatch = (Method) m_batchStatementsInProgress.remove(stmt); final boolean statementBatchingSupported = methodSendBatch != null; int[] retval = null; if (statementBatchingSupported) { try { // sendBatch() returns total row count as an Integer methodSendBatch.invoke(stmt, null); } catch (Exception e) { throw new PlatformException(e.getLocalizedMessage(), e); } } else { retval = super.executeBatch(stmt); } return retval; }
java
public int[] executeBatch(PreparedStatement stmt) throws PlatformException { // Check for Oracle batching support final Method methodSendBatch = (Method) m_batchStatementsInProgress.remove(stmt); final boolean statementBatchingSupported = methodSendBatch != null; int[] retval = null; if (statementBatchingSupported) { try { // sendBatch() returns total row count as an Integer methodSendBatch.invoke(stmt, null); } catch (Exception e) { throw new PlatformException(e.getLocalizedMessage(), e); } } else { retval = super.executeBatch(stmt); } return retval; }
[ "public", "int", "[", "]", "executeBatch", "(", "PreparedStatement", "stmt", ")", "throws", "PlatformException", "{", "// Check for Oracle batching support\r", "final", "Method", "methodSendBatch", "=", "(", "Method", ")", "m_batchStatementsInProgress", ".", "remove", "(", "stmt", ")", ";", "final", "boolean", "statementBatchingSupported", "=", "methodSendBatch", "!=", "null", ";", "int", "[", "]", "retval", "=", "null", ";", "if", "(", "statementBatchingSupported", ")", "{", "try", "{", "// sendBatch() returns total row count as an Integer\r", "methodSendBatch", ".", "invoke", "(", "stmt", ",", "null", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "throw", "new", "PlatformException", "(", "e", ".", "getLocalizedMessage", "(", ")", ",", "e", ")", ";", "}", "}", "else", "{", "retval", "=", "super", ".", "executeBatch", "(", "stmt", ")", ";", "}", "return", "retval", ";", "}" ]
Try Oracle update batching and call sendBatch or revert to JDBC update batching. @param stmt the batched prepared statement about to be executed @return always <code>null</code> if Oracle update batching is used, since it is impossible to dissolve total row count into distinct statement counts. If JDBC update batching is used, an int array is returned containing number of updated rows for each batched statement. @throws PlatformException upon JDBC failure
[ "Try", "Oracle", "update", "batching", "and", "call", "sendBatch", "or", "revert", "to", "JDBC", "update", "batching", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/platforms/PlatformWLOracle9iImpl.java#L189-L213
train
geomajas/geomajas-project-server
plugin/runtimeconfig/runtimeconfig/src/main/java/org/geomajas/plugin/runtimeconfig/service/BeanDefinitionDtoConverterServiceImpl.java
BeanDefinitionDtoConverterServiceImpl.toInternal
public BeanDefinition toInternal(BeanDefinitionInfo beanDefinitionInfo) { if (beanDefinitionInfo instanceof GenericBeanDefinitionInfo) { GenericBeanDefinitionInfo genericInfo = (GenericBeanDefinitionInfo) beanDefinitionInfo; GenericBeanDefinition def = new GenericBeanDefinition(); def.setBeanClassName(genericInfo.getClassName()); if (genericInfo.getPropertyValues() != null) { MutablePropertyValues propertyValues = new MutablePropertyValues(); for (Entry<String, BeanMetadataElementInfo> entry : genericInfo.getPropertyValues().entrySet()) { BeanMetadataElementInfo info = entry.getValue(); propertyValues.add(entry.getKey(), toInternal(info)); } def.setPropertyValues(propertyValues); } return def; } else if (beanDefinitionInfo instanceof ObjectBeanDefinitionInfo) { ObjectBeanDefinitionInfo objectInfo = (ObjectBeanDefinitionInfo) beanDefinitionInfo; return createBeanDefinitionByIntrospection(objectInfo.getObject()); } else { throw new IllegalArgumentException("Conversion to internal of " + beanDefinitionInfo.getClass().getName() + " not implemented"); } }
java
public BeanDefinition toInternal(BeanDefinitionInfo beanDefinitionInfo) { if (beanDefinitionInfo instanceof GenericBeanDefinitionInfo) { GenericBeanDefinitionInfo genericInfo = (GenericBeanDefinitionInfo) beanDefinitionInfo; GenericBeanDefinition def = new GenericBeanDefinition(); def.setBeanClassName(genericInfo.getClassName()); if (genericInfo.getPropertyValues() != null) { MutablePropertyValues propertyValues = new MutablePropertyValues(); for (Entry<String, BeanMetadataElementInfo> entry : genericInfo.getPropertyValues().entrySet()) { BeanMetadataElementInfo info = entry.getValue(); propertyValues.add(entry.getKey(), toInternal(info)); } def.setPropertyValues(propertyValues); } return def; } else if (beanDefinitionInfo instanceof ObjectBeanDefinitionInfo) { ObjectBeanDefinitionInfo objectInfo = (ObjectBeanDefinitionInfo) beanDefinitionInfo; return createBeanDefinitionByIntrospection(objectInfo.getObject()); } else { throw new IllegalArgumentException("Conversion to internal of " + beanDefinitionInfo.getClass().getName() + " not implemented"); } }
[ "public", "BeanDefinition", "toInternal", "(", "BeanDefinitionInfo", "beanDefinitionInfo", ")", "{", "if", "(", "beanDefinitionInfo", "instanceof", "GenericBeanDefinitionInfo", ")", "{", "GenericBeanDefinitionInfo", "genericInfo", "=", "(", "GenericBeanDefinitionInfo", ")", "beanDefinitionInfo", ";", "GenericBeanDefinition", "def", "=", "new", "GenericBeanDefinition", "(", ")", ";", "def", ".", "setBeanClassName", "(", "genericInfo", ".", "getClassName", "(", ")", ")", ";", "if", "(", "genericInfo", ".", "getPropertyValues", "(", ")", "!=", "null", ")", "{", "MutablePropertyValues", "propertyValues", "=", "new", "MutablePropertyValues", "(", ")", ";", "for", "(", "Entry", "<", "String", ",", "BeanMetadataElementInfo", ">", "entry", ":", "genericInfo", ".", "getPropertyValues", "(", ")", ".", "entrySet", "(", ")", ")", "{", "BeanMetadataElementInfo", "info", "=", "entry", ".", "getValue", "(", ")", ";", "propertyValues", ".", "add", "(", "entry", ".", "getKey", "(", ")", ",", "toInternal", "(", "info", ")", ")", ";", "}", "def", ".", "setPropertyValues", "(", "propertyValues", ")", ";", "}", "return", "def", ";", "}", "else", "if", "(", "beanDefinitionInfo", "instanceof", "ObjectBeanDefinitionInfo", ")", "{", "ObjectBeanDefinitionInfo", "objectInfo", "=", "(", "ObjectBeanDefinitionInfo", ")", "beanDefinitionInfo", ";", "return", "createBeanDefinitionByIntrospection", "(", "objectInfo", ".", "getObject", "(", ")", ")", ";", "}", "else", "{", "throw", "new", "IllegalArgumentException", "(", "\"Conversion to internal of \"", "+", "beanDefinitionInfo", ".", "getClass", "(", ")", ".", "getName", "(", ")", "+", "\" not implemented\"", ")", ";", "}", "}" ]
Convert from a DTO to an internal Spring bean definition. @param beanDefinitionDto The DTO object. @return Returns a Spring bean definition.
[ "Convert", "from", "a", "DTO", "to", "an", "internal", "Spring", "bean", "definition", "." ]
904b7d7deed1350d28955589098dd1e0a786d76e
https://github.com/geomajas/geomajas-project-server/blob/904b7d7deed1350d28955589098dd1e0a786d76e/plugin/runtimeconfig/runtimeconfig/src/main/java/org/geomajas/plugin/runtimeconfig/service/BeanDefinitionDtoConverterServiceImpl.java#L96-L117
train
geomajas/geomajas-project-server
plugin/runtimeconfig/runtimeconfig/src/main/java/org/geomajas/plugin/runtimeconfig/service/BeanDefinitionDtoConverterServiceImpl.java
BeanDefinitionDtoConverterServiceImpl.toDto
public BeanDefinitionInfo toDto(BeanDefinition beanDefinition) { if (beanDefinition instanceof GenericBeanDefinition) { GenericBeanDefinitionInfo info = new GenericBeanDefinitionInfo(); info.setClassName(beanDefinition.getBeanClassName()); if (beanDefinition.getPropertyValues() != null) { Map<String, BeanMetadataElementInfo> propertyValues = new HashMap<String, BeanMetadataElementInfo>(); for (PropertyValue value : beanDefinition.getPropertyValues().getPropertyValueList()) { Object obj = value.getValue(); if (obj instanceof BeanMetadataElement) { propertyValues.put(value.getName(), toDto((BeanMetadataElement) obj)); } else { throw new IllegalArgumentException("Type " + obj.getClass().getName() + " is not a BeanMetadataElement for property: " + value.getName()); } } info.setPropertyValues(propertyValues); } return info; } else { throw new IllegalArgumentException("Conversion to DTO of " + beanDefinition.getClass().getName() + " not implemented"); } }
java
public BeanDefinitionInfo toDto(BeanDefinition beanDefinition) { if (beanDefinition instanceof GenericBeanDefinition) { GenericBeanDefinitionInfo info = new GenericBeanDefinitionInfo(); info.setClassName(beanDefinition.getBeanClassName()); if (beanDefinition.getPropertyValues() != null) { Map<String, BeanMetadataElementInfo> propertyValues = new HashMap<String, BeanMetadataElementInfo>(); for (PropertyValue value : beanDefinition.getPropertyValues().getPropertyValueList()) { Object obj = value.getValue(); if (obj instanceof BeanMetadataElement) { propertyValues.put(value.getName(), toDto((BeanMetadataElement) obj)); } else { throw new IllegalArgumentException("Type " + obj.getClass().getName() + " is not a BeanMetadataElement for property: " + value.getName()); } } info.setPropertyValues(propertyValues); } return info; } else { throw new IllegalArgumentException("Conversion to DTO of " + beanDefinition.getClass().getName() + " not implemented"); } }
[ "public", "BeanDefinitionInfo", "toDto", "(", "BeanDefinition", "beanDefinition", ")", "{", "if", "(", "beanDefinition", "instanceof", "GenericBeanDefinition", ")", "{", "GenericBeanDefinitionInfo", "info", "=", "new", "GenericBeanDefinitionInfo", "(", ")", ";", "info", ".", "setClassName", "(", "beanDefinition", ".", "getBeanClassName", "(", ")", ")", ";", "if", "(", "beanDefinition", ".", "getPropertyValues", "(", ")", "!=", "null", ")", "{", "Map", "<", "String", ",", "BeanMetadataElementInfo", ">", "propertyValues", "=", "new", "HashMap", "<", "String", ",", "BeanMetadataElementInfo", ">", "(", ")", ";", "for", "(", "PropertyValue", "value", ":", "beanDefinition", ".", "getPropertyValues", "(", ")", ".", "getPropertyValueList", "(", ")", ")", "{", "Object", "obj", "=", "value", ".", "getValue", "(", ")", ";", "if", "(", "obj", "instanceof", "BeanMetadataElement", ")", "{", "propertyValues", ".", "put", "(", "value", ".", "getName", "(", ")", ",", "toDto", "(", "(", "BeanMetadataElement", ")", "obj", ")", ")", ";", "}", "else", "{", "throw", "new", "IllegalArgumentException", "(", "\"Type \"", "+", "obj", ".", "getClass", "(", ")", ".", "getName", "(", ")", "+", "\" is not a BeanMetadataElement for property: \"", "+", "value", ".", "getName", "(", ")", ")", ";", "}", "}", "info", ".", "setPropertyValues", "(", "propertyValues", ")", ";", "}", "return", "info", ";", "}", "else", "{", "throw", "new", "IllegalArgumentException", "(", "\"Conversion to DTO of \"", "+", "beanDefinition", ".", "getClass", "(", ")", ".", "getName", "(", ")", "+", "\" not implemented\"", ")", ";", "}", "}" ]
Convert from an internal Spring bean definition to a DTO. @param beanDefinition The internal Spring bean definition. @return Returns a DTO representation.
[ "Convert", "from", "an", "internal", "Spring", "bean", "definition", "to", "a", "DTO", "." ]
904b7d7deed1350d28955589098dd1e0a786d76e
https://github.com/geomajas/geomajas-project-server/blob/904b7d7deed1350d28955589098dd1e0a786d76e/plugin/runtimeconfig/runtimeconfig/src/main/java/org/geomajas/plugin/runtimeconfig/service/BeanDefinitionDtoConverterServiceImpl.java#L125-L148
train
geomajas/geomajas-project-server
plugin/runtimeconfig/runtimeconfig/src/main/java/org/geomajas/plugin/runtimeconfig/service/BeanDefinitionDtoConverterServiceImpl.java
BeanDefinitionDtoConverterServiceImpl.validate
private void validate(Object object) { Set<ConstraintViolation<Object>> viols = validator.validate(object); for (ConstraintViolation<Object> constraintViolation : viols) { if (Null.class.isAssignableFrom(constraintViolation.getConstraintDescriptor().getAnnotation().getClass())) { Object o = constraintViolation.getLeafBean(); Iterator<Node> iterator = constraintViolation.getPropertyPath().iterator(); String propertyName = null; while (iterator.hasNext()) { propertyName = iterator.next().getName(); } if (propertyName != null) { try { PropertyDescriptor descriptor = BeanUtils.getPropertyDescriptor(o.getClass(), propertyName); descriptor.getWriteMethod().invoke(o, new Object[] { null }); } catch (Exception e) { e.printStackTrace(); } } } } }
java
private void validate(Object object) { Set<ConstraintViolation<Object>> viols = validator.validate(object); for (ConstraintViolation<Object> constraintViolation : viols) { if (Null.class.isAssignableFrom(constraintViolation.getConstraintDescriptor().getAnnotation().getClass())) { Object o = constraintViolation.getLeafBean(); Iterator<Node> iterator = constraintViolation.getPropertyPath().iterator(); String propertyName = null; while (iterator.hasNext()) { propertyName = iterator.next().getName(); } if (propertyName != null) { try { PropertyDescriptor descriptor = BeanUtils.getPropertyDescriptor(o.getClass(), propertyName); descriptor.getWriteMethod().invoke(o, new Object[] { null }); } catch (Exception e) { e.printStackTrace(); } } } } }
[ "private", "void", "validate", "(", "Object", "object", ")", "{", "Set", "<", "ConstraintViolation", "<", "Object", ">>", "viols", "=", "validator", ".", "validate", "(", "object", ")", ";", "for", "(", "ConstraintViolation", "<", "Object", ">", "constraintViolation", ":", "viols", ")", "{", "if", "(", "Null", ".", "class", ".", "isAssignableFrom", "(", "constraintViolation", ".", "getConstraintDescriptor", "(", ")", ".", "getAnnotation", "(", ")", ".", "getClass", "(", ")", ")", ")", "{", "Object", "o", "=", "constraintViolation", ".", "getLeafBean", "(", ")", ";", "Iterator", "<", "Node", ">", "iterator", "=", "constraintViolation", ".", "getPropertyPath", "(", ")", ".", "iterator", "(", ")", ";", "String", "propertyName", "=", "null", ";", "while", "(", "iterator", ".", "hasNext", "(", ")", ")", "{", "propertyName", "=", "iterator", ".", "next", "(", ")", ".", "getName", "(", ")", ";", "}", "if", "(", "propertyName", "!=", "null", ")", "{", "try", "{", "PropertyDescriptor", "descriptor", "=", "BeanUtils", ".", "getPropertyDescriptor", "(", "o", ".", "getClass", "(", ")", ",", "propertyName", ")", ";", "descriptor", ".", "getWriteMethod", "(", ")", ".", "invoke", "(", "o", ",", "new", "Object", "[", "]", "{", "null", "}", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "e", ".", "printStackTrace", "(", ")", ";", "}", "}", "}", "}", "}" ]
Take a stab at fixing validation problems ? @param object
[ "Take", "a", "stab", "at", "fixing", "validation", "problems", "?" ]
904b7d7deed1350d28955589098dd1e0a786d76e
https://github.com/geomajas/geomajas-project-server/blob/904b7d7deed1350d28955589098dd1e0a786d76e/plugin/runtimeconfig/runtimeconfig/src/main/java/org/geomajas/plugin/runtimeconfig/service/BeanDefinitionDtoConverterServiceImpl.java#L318-L338
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/accesslayer/ConnectionFactoryAbstractImpl.java
ConnectionFactoryAbstractImpl.initializeJdbcConnection
protected void initializeJdbcConnection(Connection con, JdbcConnectionDescriptor jcd) throws LookupException { try { PlatformFactory.getPlatformFor(jcd).initializeJdbcConnection(jcd, con); } catch (PlatformException e) { throw new LookupException("Platform dependent initialization of connection failed", e); } }
java
protected void initializeJdbcConnection(Connection con, JdbcConnectionDescriptor jcd) throws LookupException { try { PlatformFactory.getPlatformFor(jcd).initializeJdbcConnection(jcd, con); } catch (PlatformException e) { throw new LookupException("Platform dependent initialization of connection failed", e); } }
[ "protected", "void", "initializeJdbcConnection", "(", "Connection", "con", ",", "JdbcConnectionDescriptor", "jcd", ")", "throws", "LookupException", "{", "try", "{", "PlatformFactory", ".", "getPlatformFor", "(", "jcd", ")", ".", "initializeJdbcConnection", "(", "jcd", ",", "con", ")", ";", "}", "catch", "(", "PlatformException", "e", ")", "{", "throw", "new", "LookupException", "(", "\"Platform dependent initialization of connection failed\"", ",", "e", ")", ";", "}", "}" ]
Initialize the connection with the specified properties in OJB configuration files and platform depended properties. Invoke this method after a NEW connection is created, not if re-using from pool. @see org.apache.ojb.broker.platforms.PlatformFactory @see org.apache.ojb.broker.platforms.Platform
[ "Initialize", "the", "connection", "with", "the", "specified", "properties", "in", "OJB", "configuration", "files", "and", "platform", "depended", "properties", ".", "Invoke", "this", "method", "after", "a", "NEW", "connection", "is", "created", "not", "if", "re", "-", "using", "from", "pool", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/accesslayer/ConnectionFactoryAbstractImpl.java#L153-L164
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/accesslayer/ConnectionFactoryAbstractImpl.java
ConnectionFactoryAbstractImpl.newConnectionFromDataSource
protected Connection newConnectionFromDataSource(JdbcConnectionDescriptor jcd) throws LookupException { Connection retval = null; // use JNDI lookup DataSource ds = jcd.getDataSource(); if (ds == null) { // [tomdz] Would it suffice to store the datasources only at the JCDs ? // Only possible problem would be serialization of the JCD because // the data source object in the JCD does not 'survive' this ds = (DataSource) dataSourceCache.get(jcd.getDatasourceName()); } try { if (ds == null) { /** * this synchronization block won't be a big deal as we only look up * new datasources not found in the map. */ synchronized (dataSourceCache) { InitialContext ic = new InitialContext(); ds = (DataSource) ic.lookup(jcd.getDatasourceName()); /** * cache the datasource lookup. */ dataSourceCache.put(jcd.getDatasourceName(), ds); } } if (jcd.getUserName() == null) { retval = ds.getConnection(); } else { retval = ds.getConnection(jcd.getUserName(), jcd.getPassWord()); } } catch (SQLException sqlEx) { log.error("SQLException thrown while trying to get Connection from Datasource (" + jcd.getDatasourceName() + ")", sqlEx); throw new LookupException("SQLException thrown while trying to get Connection from Datasource (" + jcd.getDatasourceName() + ")", sqlEx); } catch (NamingException namingEx) { log.error("Naming Exception while looking up DataSource (" + jcd.getDatasourceName() + ")", namingEx); throw new LookupException("Naming Exception while looking up DataSource (" + jcd.getDatasourceName() + ")", namingEx); } // initialize connection initializeJdbcConnection(retval, jcd); if(log.isDebugEnabled()) log.debug("Create new connection using DataSource: "+retval); return retval; }
java
protected Connection newConnectionFromDataSource(JdbcConnectionDescriptor jcd) throws LookupException { Connection retval = null; // use JNDI lookup DataSource ds = jcd.getDataSource(); if (ds == null) { // [tomdz] Would it suffice to store the datasources only at the JCDs ? // Only possible problem would be serialization of the JCD because // the data source object in the JCD does not 'survive' this ds = (DataSource) dataSourceCache.get(jcd.getDatasourceName()); } try { if (ds == null) { /** * this synchronization block won't be a big deal as we only look up * new datasources not found in the map. */ synchronized (dataSourceCache) { InitialContext ic = new InitialContext(); ds = (DataSource) ic.lookup(jcd.getDatasourceName()); /** * cache the datasource lookup. */ dataSourceCache.put(jcd.getDatasourceName(), ds); } } if (jcd.getUserName() == null) { retval = ds.getConnection(); } else { retval = ds.getConnection(jcd.getUserName(), jcd.getPassWord()); } } catch (SQLException sqlEx) { log.error("SQLException thrown while trying to get Connection from Datasource (" + jcd.getDatasourceName() + ")", sqlEx); throw new LookupException("SQLException thrown while trying to get Connection from Datasource (" + jcd.getDatasourceName() + ")", sqlEx); } catch (NamingException namingEx) { log.error("Naming Exception while looking up DataSource (" + jcd.getDatasourceName() + ")", namingEx); throw new LookupException("Naming Exception while looking up DataSource (" + jcd.getDatasourceName() + ")", namingEx); } // initialize connection initializeJdbcConnection(retval, jcd); if(log.isDebugEnabled()) log.debug("Create new connection using DataSource: "+retval); return retval; }
[ "protected", "Connection", "newConnectionFromDataSource", "(", "JdbcConnectionDescriptor", "jcd", ")", "throws", "LookupException", "{", "Connection", "retval", "=", "null", ";", "// use JNDI lookup\r", "DataSource", "ds", "=", "jcd", ".", "getDataSource", "(", ")", ";", "if", "(", "ds", "==", "null", ")", "{", "// [tomdz] Would it suffice to store the datasources only at the JCDs ?\r", "// Only possible problem would be serialization of the JCD because\r", "// the data source object in the JCD does not 'survive' this\r", "ds", "=", "(", "DataSource", ")", "dataSourceCache", ".", "get", "(", "jcd", ".", "getDatasourceName", "(", ")", ")", ";", "}", "try", "{", "if", "(", "ds", "==", "null", ")", "{", "/**\r\n * this synchronization block won't be a big deal as we only look up\r\n * new datasources not found in the map.\r\n */", "synchronized", "(", "dataSourceCache", ")", "{", "InitialContext", "ic", "=", "new", "InitialContext", "(", ")", ";", "ds", "=", "(", "DataSource", ")", "ic", ".", "lookup", "(", "jcd", ".", "getDatasourceName", "(", ")", ")", ";", "/**\r\n * cache the datasource lookup.\r\n */", "dataSourceCache", ".", "put", "(", "jcd", ".", "getDatasourceName", "(", ")", ",", "ds", ")", ";", "}", "}", "if", "(", "jcd", ".", "getUserName", "(", ")", "==", "null", ")", "{", "retval", "=", "ds", ".", "getConnection", "(", ")", ";", "}", "else", "{", "retval", "=", "ds", ".", "getConnection", "(", "jcd", ".", "getUserName", "(", ")", ",", "jcd", ".", "getPassWord", "(", ")", ")", ";", "}", "}", "catch", "(", "SQLException", "sqlEx", ")", "{", "log", ".", "error", "(", "\"SQLException thrown while trying to get Connection from Datasource (\"", "+", "jcd", ".", "getDatasourceName", "(", ")", "+", "\")\"", ",", "sqlEx", ")", ";", "throw", "new", "LookupException", "(", "\"SQLException thrown while trying to get Connection from Datasource (\"", "+", "jcd", ".", "getDatasourceName", "(", ")", "+", "\")\"", ",", "sqlEx", ")", ";", "}", "catch", "(", "NamingException", "namingEx", ")", "{", "log", ".", "error", "(", "\"Naming Exception while looking up DataSource (\"", "+", "jcd", ".", "getDatasourceName", "(", ")", "+", "\")\"", ",", "namingEx", ")", ";", "throw", "new", "LookupException", "(", "\"Naming Exception while looking up DataSource (\"", "+", "jcd", ".", "getDatasourceName", "(", ")", "+", "\")\"", ",", "namingEx", ")", ";", "}", "// initialize connection\r", "initializeJdbcConnection", "(", "retval", ",", "jcd", ")", ";", "if", "(", "log", ".", "isDebugEnabled", "(", ")", ")", "log", ".", "debug", "(", "\"Create new connection using DataSource: \"", "+", "retval", ")", ";", "return", "retval", ";", "}" ]
Creates a new connection from the data source that the connection descriptor represents. If the connection descriptor does not directly contain the data source then a JNDI lookup is performed to retrieve the data source. @param jcd The connection descriptor @return A connection instance @throws LookupException if we can't get a connection from the datasource either due to a naming exception, a failed sanity check, or a SQLException.
[ "Creates", "a", "new", "connection", "from", "the", "data", "source", "that", "the", "connection", "descriptor", "represents", ".", "If", "the", "connection", "descriptor", "does", "not", "directly", "contain", "the", "data", "source", "then", "a", "JNDI", "lookup", "is", "performed", "to", "retrieve", "the", "data", "source", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/accesslayer/ConnectionFactoryAbstractImpl.java#L186-L244
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/accesslayer/ConnectionFactoryAbstractImpl.java
ConnectionFactoryAbstractImpl.newConnectionFromDriverManager
protected Connection newConnectionFromDriverManager(JdbcConnectionDescriptor jcd) throws LookupException { Connection retval = null; // use JDBC DriverManager final String driver = jcd.getDriver(); final String url = getDbURL(jcd); try { // loads the driver - NB call to newInstance() added to force initialisation ClassHelper.getClass(driver, true); final String user = jcd.getUserName(); final String password = jcd.getPassWord(); final Properties properties = getJdbcProperties(jcd, user, password); if (properties.isEmpty()) { if (user == null) { retval = DriverManager.getConnection(url); } else { retval = DriverManager.getConnection(url, user, password); } } else { retval = DriverManager.getConnection(url, properties); } } catch (SQLException sqlEx) { log.error("Error getting Connection from DriverManager with url (" + url + ") and driver (" + driver + ")", sqlEx); throw new LookupException("Error getting Connection from DriverManager with url (" + url + ") and driver (" + driver + ")", sqlEx); } catch (ClassNotFoundException cnfEx) { log.error(cnfEx); throw new LookupException("A class was not found", cnfEx); } catch (Exception e) { log.error("Instantiation of jdbc driver failed", e); throw new LookupException("Instantiation of jdbc driver failed", e); } // initialize connection initializeJdbcConnection(retval, jcd); if(log.isDebugEnabled()) log.debug("Create new connection using DriverManager: "+retval); return retval; }
java
protected Connection newConnectionFromDriverManager(JdbcConnectionDescriptor jcd) throws LookupException { Connection retval = null; // use JDBC DriverManager final String driver = jcd.getDriver(); final String url = getDbURL(jcd); try { // loads the driver - NB call to newInstance() added to force initialisation ClassHelper.getClass(driver, true); final String user = jcd.getUserName(); final String password = jcd.getPassWord(); final Properties properties = getJdbcProperties(jcd, user, password); if (properties.isEmpty()) { if (user == null) { retval = DriverManager.getConnection(url); } else { retval = DriverManager.getConnection(url, user, password); } } else { retval = DriverManager.getConnection(url, properties); } } catch (SQLException sqlEx) { log.error("Error getting Connection from DriverManager with url (" + url + ") and driver (" + driver + ")", sqlEx); throw new LookupException("Error getting Connection from DriverManager with url (" + url + ") and driver (" + driver + ")", sqlEx); } catch (ClassNotFoundException cnfEx) { log.error(cnfEx); throw new LookupException("A class was not found", cnfEx); } catch (Exception e) { log.error("Instantiation of jdbc driver failed", e); throw new LookupException("Instantiation of jdbc driver failed", e); } // initialize connection initializeJdbcConnection(retval, jcd); if(log.isDebugEnabled()) log.debug("Create new connection using DriverManager: "+retval); return retval; }
[ "protected", "Connection", "newConnectionFromDriverManager", "(", "JdbcConnectionDescriptor", "jcd", ")", "throws", "LookupException", "{", "Connection", "retval", "=", "null", ";", "// use JDBC DriverManager\r", "final", "String", "driver", "=", "jcd", ".", "getDriver", "(", ")", ";", "final", "String", "url", "=", "getDbURL", "(", "jcd", ")", ";", "try", "{", "// loads the driver - NB call to newInstance() added to force initialisation\r", "ClassHelper", ".", "getClass", "(", "driver", ",", "true", ")", ";", "final", "String", "user", "=", "jcd", ".", "getUserName", "(", ")", ";", "final", "String", "password", "=", "jcd", ".", "getPassWord", "(", ")", ";", "final", "Properties", "properties", "=", "getJdbcProperties", "(", "jcd", ",", "user", ",", "password", ")", ";", "if", "(", "properties", ".", "isEmpty", "(", ")", ")", "{", "if", "(", "user", "==", "null", ")", "{", "retval", "=", "DriverManager", ".", "getConnection", "(", "url", ")", ";", "}", "else", "{", "retval", "=", "DriverManager", ".", "getConnection", "(", "url", ",", "user", ",", "password", ")", ";", "}", "}", "else", "{", "retval", "=", "DriverManager", ".", "getConnection", "(", "url", ",", "properties", ")", ";", "}", "}", "catch", "(", "SQLException", "sqlEx", ")", "{", "log", ".", "error", "(", "\"Error getting Connection from DriverManager with url (\"", "+", "url", "+", "\") and driver (\"", "+", "driver", "+", "\")\"", ",", "sqlEx", ")", ";", "throw", "new", "LookupException", "(", "\"Error getting Connection from DriverManager with url (\"", "+", "url", "+", "\") and driver (\"", "+", "driver", "+", "\")\"", ",", "sqlEx", ")", ";", "}", "catch", "(", "ClassNotFoundException", "cnfEx", ")", "{", "log", ".", "error", "(", "cnfEx", ")", ";", "throw", "new", "LookupException", "(", "\"A class was not found\"", ",", "cnfEx", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "log", ".", "error", "(", "\"Instantiation of jdbc driver failed\"", ",", "e", ")", ";", "throw", "new", "LookupException", "(", "\"Instantiation of jdbc driver failed\"", ",", "e", ")", ";", "}", "// initialize connection\r", "initializeJdbcConnection", "(", "retval", ",", "jcd", ")", ";", "if", "(", "log", ".", "isDebugEnabled", "(", ")", ")", "log", ".", "debug", "(", "\"Create new connection using DriverManager: \"", "+", "retval", ")", ";", "return", "retval", ";", "}" ]
Returns a new created connection @param jcd the connection descriptor @return an instance of Connection from the drivermanager
[ "Returns", "a", "new", "created", "connection" ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/accesslayer/ConnectionFactoryAbstractImpl.java#L252-L301
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/ant/PreparedModel.java
PreparedModel.prepareModel
private void prepareModel(DescriptorRepository model) { TreeMap result = new TreeMap(); for (Iterator it = model.getDescriptorTable().values().iterator(); it.hasNext();) { ClassDescriptor classDesc = (ClassDescriptor)it.next(); if (classDesc.getFullTableName() == null) { // not mapped to a database table continue; } String elementName = getElementName(classDesc); Table mappedTable = getTableFor(elementName); Map columnsMap = getColumnsFor(elementName); Map requiredAttributes = getRequiredAttributes(elementName); List classDescs = getClassDescriptorsMappingTo(elementName); if (mappedTable == null) { mappedTable = _schema.findTable(classDesc.getFullTableName()); if (mappedTable == null) { continue; } columnsMap = new TreeMap(); requiredAttributes = new HashMap(); classDescs = new ArrayList(); _elementToTable.put(elementName, mappedTable); _elementToClassDescriptors.put(elementName, classDescs); _elementToColumnMap.put(elementName, columnsMap); _elementToRequiredAttributesMap.put(elementName, requiredAttributes); } classDescs.add(classDesc); extractAttributes(classDesc, mappedTable, columnsMap, requiredAttributes); } extractIndirectionTables(model, _schema); }
java
private void prepareModel(DescriptorRepository model) { TreeMap result = new TreeMap(); for (Iterator it = model.getDescriptorTable().values().iterator(); it.hasNext();) { ClassDescriptor classDesc = (ClassDescriptor)it.next(); if (classDesc.getFullTableName() == null) { // not mapped to a database table continue; } String elementName = getElementName(classDesc); Table mappedTable = getTableFor(elementName); Map columnsMap = getColumnsFor(elementName); Map requiredAttributes = getRequiredAttributes(elementName); List classDescs = getClassDescriptorsMappingTo(elementName); if (mappedTable == null) { mappedTable = _schema.findTable(classDesc.getFullTableName()); if (mappedTable == null) { continue; } columnsMap = new TreeMap(); requiredAttributes = new HashMap(); classDescs = new ArrayList(); _elementToTable.put(elementName, mappedTable); _elementToClassDescriptors.put(elementName, classDescs); _elementToColumnMap.put(elementName, columnsMap); _elementToRequiredAttributesMap.put(elementName, requiredAttributes); } classDescs.add(classDesc); extractAttributes(classDesc, mappedTable, columnsMap, requiredAttributes); } extractIndirectionTables(model, _schema); }
[ "private", "void", "prepareModel", "(", "DescriptorRepository", "model", ")", "{", "TreeMap", "result", "=", "new", "TreeMap", "(", ")", ";", "for", "(", "Iterator", "it", "=", "model", ".", "getDescriptorTable", "(", ")", ".", "values", "(", ")", ".", "iterator", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "ClassDescriptor", "classDesc", "=", "(", "ClassDescriptor", ")", "it", ".", "next", "(", ")", ";", "if", "(", "classDesc", ".", "getFullTableName", "(", ")", "==", "null", ")", "{", "// not mapped to a database table\r", "continue", ";", "}", "String", "elementName", "=", "getElementName", "(", "classDesc", ")", ";", "Table", "mappedTable", "=", "getTableFor", "(", "elementName", ")", ";", "Map", "columnsMap", "=", "getColumnsFor", "(", "elementName", ")", ";", "Map", "requiredAttributes", "=", "getRequiredAttributes", "(", "elementName", ")", ";", "List", "classDescs", "=", "getClassDescriptorsMappingTo", "(", "elementName", ")", ";", "if", "(", "mappedTable", "==", "null", ")", "{", "mappedTable", "=", "_schema", ".", "findTable", "(", "classDesc", ".", "getFullTableName", "(", ")", ")", ";", "if", "(", "mappedTable", "==", "null", ")", "{", "continue", ";", "}", "columnsMap", "=", "new", "TreeMap", "(", ")", ";", "requiredAttributes", "=", "new", "HashMap", "(", ")", ";", "classDescs", "=", "new", "ArrayList", "(", ")", ";", "_elementToTable", ".", "put", "(", "elementName", ",", "mappedTable", ")", ";", "_elementToClassDescriptors", ".", "put", "(", "elementName", ",", "classDescs", ")", ";", "_elementToColumnMap", ".", "put", "(", "elementName", ",", "columnsMap", ")", ";", "_elementToRequiredAttributesMap", ".", "put", "(", "elementName", ",", "requiredAttributes", ")", ";", "}", "classDescs", ".", "add", "(", "classDesc", ")", ";", "extractAttributes", "(", "classDesc", ",", "mappedTable", ",", "columnsMap", ",", "requiredAttributes", ")", ";", "}", "extractIndirectionTables", "(", "model", ",", "_schema", ")", ";", "}" ]
Prepares a representation of the model that is easier accessible for our purposes. @param model The original model @return The model representation
[ "Prepares", "a", "representation", "of", "the", "model", "that", "is", "easier", "accessible", "for", "our", "purposes", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/ant/PreparedModel.java#L141-L180
train
foundation-runtime/logging
logging-log4j/src/main/java/com/cisco/oss/foundation/logging/appender/FoundationFileRollingAppender.java
FoundationFileRollingAppender.subAppend
@Override protected final void subAppend(final LoggingEvent event) { if (event instanceof ScheduledFileRollEvent) { // the scheduled append() call has been made by a different thread synchronized (this) { if (this.closed) { // just consume the event return; } this.rollFile(event); } } else if (event instanceof FileRollEvent) { // definitely want to avoid rolling here whilst a file roll event is still being handled super.subAppend(event); } else { if(event instanceof FoundationLof4jLoggingEvent){ FoundationLof4jLoggingEvent foundationLof4jLoggingEvent = (FoundationLof4jLoggingEvent)event; foundationLof4jLoggingEvent.setAppenderName(this.getName()); } this.rollFile(event); super.subAppend(event); } }
java
@Override protected final void subAppend(final LoggingEvent event) { if (event instanceof ScheduledFileRollEvent) { // the scheduled append() call has been made by a different thread synchronized (this) { if (this.closed) { // just consume the event return; } this.rollFile(event); } } else if (event instanceof FileRollEvent) { // definitely want to avoid rolling here whilst a file roll event is still being handled super.subAppend(event); } else { if(event instanceof FoundationLof4jLoggingEvent){ FoundationLof4jLoggingEvent foundationLof4jLoggingEvent = (FoundationLof4jLoggingEvent)event; foundationLof4jLoggingEvent.setAppenderName(this.getName()); } this.rollFile(event); super.subAppend(event); } }
[ "@", "Override", "protected", "final", "void", "subAppend", "(", "final", "LoggingEvent", "event", ")", "{", "if", "(", "event", "instanceof", "ScheduledFileRollEvent", ")", "{", "// the scheduled append() call has been made by a different thread", "synchronized", "(", "this", ")", "{", "if", "(", "this", ".", "closed", ")", "{", "// just consume the event", "return", ";", "}", "this", ".", "rollFile", "(", "event", ")", ";", "}", "}", "else", "if", "(", "event", "instanceof", "FileRollEvent", ")", "{", "// definitely want to avoid rolling here whilst a file roll event is still being handled", "super", ".", "subAppend", "(", "event", ")", ";", "}", "else", "{", "if", "(", "event", "instanceof", "FoundationLof4jLoggingEvent", ")", "{", "FoundationLof4jLoggingEvent", "foundationLof4jLoggingEvent", "=", "(", "FoundationLof4jLoggingEvent", ")", "event", ";", "foundationLof4jLoggingEvent", ".", "setAppenderName", "(", "this", ".", "getName", "(", ")", ")", ";", "}", "this", ".", "rollFile", "(", "event", ")", ";", "super", ".", "subAppend", "(", "event", ")", ";", "}", "}" ]
Responsible for executing file rolls as and when required, in addition to delegating to the super class to perform the actual append operation. Synchronized for safety during enforced file roll. @see org.apache.log4j.WriterAppender#subAppend(org.apache.log4j.spi.LoggingEvent)
[ "Responsible", "for", "executing", "file", "rolls", "as", "and", "when", "required", "in", "addition", "to", "delegating", "to", "the", "super", "class", "to", "perform", "the", "actual", "append", "operation", ".", "Synchronized", "for", "safety", "during", "enforced", "file", "roll", "." ]
cd0a07b3c5b458ecf90ab92a1e0c72a067f5cbd6
https://github.com/foundation-runtime/logging/blob/cd0a07b3c5b458ecf90ab92a1e0c72a067f5cbd6/logging-log4j/src/main/java/com/cisco/oss/foundation/logging/appender/FoundationFileRollingAppender.java#L716-L740
train
gsi-upm/BeastTool
beast-tool/src/main/java/es/upm/dit/gsi/beast/mock/jade/bridgeMock/BridgeMockAgent.java
BridgeMockAgent.updateIntegerBelief
public void updateIntegerBelief(String name, int value) { introspector.storeBeliefValue(this, name, getIntegerBelief(name) + value); }
java
public void updateIntegerBelief(String name, int value) { introspector.storeBeliefValue(this, name, getIntegerBelief(name) + value); }
[ "public", "void", "updateIntegerBelief", "(", "String", "name", ",", "int", "value", ")", "{", "introspector", ".", "storeBeliefValue", "(", "this", ",", "name", ",", "getIntegerBelief", "(", "name", ")", "+", "value", ")", ";", "}" ]
Updates the given integer belief adding the given integer newBelief = previousBelief + givenValue @param String - the belief name @param the value to add
[ "Updates", "the", "given", "integer", "belief", "adding", "the", "given", "integer", "newBelief", "=", "previousBelief", "+", "givenValue" ]
cc7fdc75cb818c5d60802aaf32c27829e0ca144c
https://github.com/gsi-upm/BeastTool/blob/cc7fdc75cb818c5d60802aaf32c27829e0ca144c/beast-tool/src/main/java/es/upm/dit/gsi/beast/mock/jade/bridgeMock/BridgeMockAgent.java#L157-L159
train
gsi-upm/BeastTool
beast-tool/src/main/java/es/upm/dit/gsi/beast/mock/jade/bridgeMock/BridgeMockAgent.java
BridgeMockAgent.getIntegerBelief
public int getIntegerBelief(String name){ Object belief = introspector.getBeliefBase(this).get(name); int count = 0; if (belief!=null) { count = (Integer) belief; } return (Integer) count; }
java
public int getIntegerBelief(String name){ Object belief = introspector.getBeliefBase(this).get(name); int count = 0; if (belief!=null) { count = (Integer) belief; } return (Integer) count; }
[ "public", "int", "getIntegerBelief", "(", "String", "name", ")", "{", "Object", "belief", "=", "introspector", ".", "getBeliefBase", "(", "this", ")", ".", "get", "(", "name", ")", ";", "int", "count", "=", "0", ";", "if", "(", "belief", "!=", "null", ")", "{", "count", "=", "(", "Integer", ")", "belief", ";", "}", "return", "(", "Integer", ")", "count", ";", "}" ]
Returns the integer value o the given belief
[ "Returns", "the", "integer", "value", "o", "the", "given", "belief" ]
cc7fdc75cb818c5d60802aaf32c27829e0ca144c
https://github.com/gsi-upm/BeastTool/blob/cc7fdc75cb818c5d60802aaf32c27829e0ca144c/beast-tool/src/main/java/es/upm/dit/gsi/beast/mock/jade/bridgeMock/BridgeMockAgent.java#L164-L171
train
isisaddons-legacy/isis-module-excel
dom/src/main/java/org/isisaddons/module/excel/dom/ExcelService.java
ExcelService.fromExcel
@Programmatic public <T> List<T> fromExcel( final Blob excelBlob, final Class<T> cls, final String sheetName) throws ExcelService.Exception { return fromExcel(excelBlob, new WorksheetSpec(cls, sheetName)); }
java
@Programmatic public <T> List<T> fromExcel( final Blob excelBlob, final Class<T> cls, final String sheetName) throws ExcelService.Exception { return fromExcel(excelBlob, new WorksheetSpec(cls, sheetName)); }
[ "@", "Programmatic", "public", "<", "T", ">", "List", "<", "T", ">", "fromExcel", "(", "final", "Blob", "excelBlob", ",", "final", "Class", "<", "T", ">", "cls", ",", "final", "String", "sheetName", ")", "throws", "ExcelService", ".", "Exception", "{", "return", "fromExcel", "(", "excelBlob", ",", "new", "WorksheetSpec", "(", "cls", ",", "sheetName", ")", ")", ";", "}" ]
Returns a list of objects for each line in the spreadsheet, of the specified type. <p> If the class is a view model then the objects will be properly instantiated (that is, using {@link DomainObjectContainer#newViewModelInstance(Class, String)}, with the correct view model memento); otherwise the objects will be simple transient objects (that is, using {@link DomainObjectContainer#newTransientInstance(Class)}). </p>
[ "Returns", "a", "list", "of", "objects", "for", "each", "line", "in", "the", "spreadsheet", "of", "the", "specified", "type", "." ]
a3b92b1797ab2ed609667933d4164e9fb54b9f25
https://github.com/isisaddons-legacy/isis-module-excel/blob/a3b92b1797ab2ed609667933d4164e9fb54b9f25/dom/src/main/java/org/isisaddons/module/excel/dom/ExcelService.java#L155-L161
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/odmg/LocalTxManager.java
LocalTxManager.getCurrentTransaction
public TransactionImpl getCurrentTransaction() { TransactionImpl tx = tx_table.get(Thread.currentThread()); if(tx == null) { throw new TransactionNotInProgressException("Calling method needed transaction, but no transaction found for current thread :-("); } return tx; }
java
public TransactionImpl getCurrentTransaction() { TransactionImpl tx = tx_table.get(Thread.currentThread()); if(tx == null) { throw new TransactionNotInProgressException("Calling method needed transaction, but no transaction found for current thread :-("); } return tx; }
[ "public", "TransactionImpl", "getCurrentTransaction", "(", ")", "{", "TransactionImpl", "tx", "=", "tx_table", ".", "get", "(", "Thread", ".", "currentThread", "(", ")", ")", ";", "if", "(", "tx", "==", "null", ")", "{", "throw", "new", "TransactionNotInProgressException", "(", "\"Calling method needed transaction, but no transaction found for current thread :-(\"", ")", ";", "}", "return", "tx", ";", "}" ]
Returns the current transaction for the calling thread. @throws org.odmg.TransactionNotInProgressException {@link org.odmg.TransactionNotInProgressException} if no transaction was found.
[ "Returns", "the", "current", "transaction", "for", "the", "calling", "thread", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/odmg/LocalTxManager.java#L54-L62
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java
ClassDescriptorDef.getDefaultTableName
public String getDefaultTableName() { String name = getName(); int lastDotPos = name.lastIndexOf('.'); int lastDollarPos = name.lastIndexOf('$'); return lastDollarPos > lastDotPos ? name.substring(lastDollarPos + 1) : name.substring(lastDotPos + 1); }
java
public String getDefaultTableName() { String name = getName(); int lastDotPos = name.lastIndexOf('.'); int lastDollarPos = name.lastIndexOf('$'); return lastDollarPos > lastDotPos ? name.substring(lastDollarPos + 1) : name.substring(lastDotPos + 1); }
[ "public", "String", "getDefaultTableName", "(", ")", "{", "String", "name", "=", "getName", "(", ")", ";", "int", "lastDotPos", "=", "name", ".", "lastIndexOf", "(", "'", "'", ")", ";", "int", "lastDollarPos", "=", "name", ".", "lastIndexOf", "(", "'", "'", ")", ";", "return", "lastDollarPos", ">", "lastDotPos", "?", "name", ".", "substring", "(", "lastDollarPos", "+", "1", ")", ":", "name", ".", "substring", "(", "lastDotPos", "+", "1", ")", ";", "}" ]
Returns the default table name for this class which is the unqualified class name. @return The default table name
[ "Returns", "the", "default", "table", "name", "for", "this", "class", "which", "is", "the", "unqualified", "class", "name", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java#L96-L103
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java
ClassDescriptorDef.sortFields
private void sortFields() { HashMap fields = new HashMap(); ArrayList fieldsWithId = new ArrayList(); ArrayList fieldsWithoutId = new ArrayList(); FieldDescriptorDef fieldDef; for (Iterator it = getFields(); it.hasNext(); ) { fieldDef = (FieldDescriptorDef)it.next(); fields.put(fieldDef.getName(), fieldDef); if (fieldDef.hasProperty(PropertyHelper.OJB_PROPERTY_ID)) { fieldsWithId.add(fieldDef.getName()); } else { fieldsWithoutId.add(fieldDef.getName()); } } Collections.sort(fieldsWithId, new FieldWithIdComparator(fields)); ArrayList result = new ArrayList(); for (Iterator it = fieldsWithId.iterator(); it.hasNext();) { result.add(getField((String)it.next())); } for (Iterator it = fieldsWithoutId.iterator(); it.hasNext();) { result.add(getField((String)it.next())); } _fields = result; }
java
private void sortFields() { HashMap fields = new HashMap(); ArrayList fieldsWithId = new ArrayList(); ArrayList fieldsWithoutId = new ArrayList(); FieldDescriptorDef fieldDef; for (Iterator it = getFields(); it.hasNext(); ) { fieldDef = (FieldDescriptorDef)it.next(); fields.put(fieldDef.getName(), fieldDef); if (fieldDef.hasProperty(PropertyHelper.OJB_PROPERTY_ID)) { fieldsWithId.add(fieldDef.getName()); } else { fieldsWithoutId.add(fieldDef.getName()); } } Collections.sort(fieldsWithId, new FieldWithIdComparator(fields)); ArrayList result = new ArrayList(); for (Iterator it = fieldsWithId.iterator(); it.hasNext();) { result.add(getField((String)it.next())); } for (Iterator it = fieldsWithoutId.iterator(); it.hasNext();) { result.add(getField((String)it.next())); } _fields = result; }
[ "private", "void", "sortFields", "(", ")", "{", "HashMap", "fields", "=", "new", "HashMap", "(", ")", ";", "ArrayList", "fieldsWithId", "=", "new", "ArrayList", "(", ")", ";", "ArrayList", "fieldsWithoutId", "=", "new", "ArrayList", "(", ")", ";", "FieldDescriptorDef", "fieldDef", ";", "for", "(", "Iterator", "it", "=", "getFields", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "fieldDef", "=", "(", "FieldDescriptorDef", ")", "it", ".", "next", "(", ")", ";", "fields", ".", "put", "(", "fieldDef", ".", "getName", "(", ")", ",", "fieldDef", ")", ";", "if", "(", "fieldDef", ".", "hasProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_ID", ")", ")", "{", "fieldsWithId", ".", "add", "(", "fieldDef", ".", "getName", "(", ")", ")", ";", "}", "else", "{", "fieldsWithoutId", ".", "add", "(", "fieldDef", ".", "getName", "(", ")", ")", ";", "}", "}", "Collections", ".", "sort", "(", "fieldsWithId", ",", "new", "FieldWithIdComparator", "(", "fields", ")", ")", ";", "ArrayList", "result", "=", "new", "ArrayList", "(", ")", ";", "for", "(", "Iterator", "it", "=", "fieldsWithId", ".", "iterator", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "result", ".", "add", "(", "getField", "(", "(", "String", ")", "it", ".", "next", "(", ")", ")", ")", ";", "}", "for", "(", "Iterator", "it", "=", "fieldsWithoutId", ".", "iterator", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "result", ".", "add", "(", "getField", "(", "(", "String", ")", "it", ".", "next", "(", ")", ")", ")", ";", "}", "_fields", "=", "result", ";", "}" ]
Sorts the fields.
[ "Sorts", "the", "fields", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java#L223-L258
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java
ClassDescriptorDef.checkConstraints
public void checkConstraints(String checkLevel) throws ConstraintException { // now checking constraints FieldDescriptorConstraints fieldConstraints = new FieldDescriptorConstraints(); ReferenceDescriptorConstraints refConstraints = new ReferenceDescriptorConstraints(); CollectionDescriptorConstraints collConstraints = new CollectionDescriptorConstraints(); for (Iterator it = getFields(); it.hasNext();) { fieldConstraints.check((FieldDescriptorDef)it.next(), checkLevel); } for (Iterator it = getReferences(); it.hasNext();) { refConstraints.check((ReferenceDescriptorDef)it.next(), checkLevel); } for (Iterator it = getCollections(); it.hasNext();) { collConstraints.check((CollectionDescriptorDef)it.next(), checkLevel); } new ClassDescriptorConstraints().check(this, checkLevel); }
java
public void checkConstraints(String checkLevel) throws ConstraintException { // now checking constraints FieldDescriptorConstraints fieldConstraints = new FieldDescriptorConstraints(); ReferenceDescriptorConstraints refConstraints = new ReferenceDescriptorConstraints(); CollectionDescriptorConstraints collConstraints = new CollectionDescriptorConstraints(); for (Iterator it = getFields(); it.hasNext();) { fieldConstraints.check((FieldDescriptorDef)it.next(), checkLevel); } for (Iterator it = getReferences(); it.hasNext();) { refConstraints.check((ReferenceDescriptorDef)it.next(), checkLevel); } for (Iterator it = getCollections(); it.hasNext();) { collConstraints.check((CollectionDescriptorDef)it.next(), checkLevel); } new ClassDescriptorConstraints().check(this, checkLevel); }
[ "public", "void", "checkConstraints", "(", "String", "checkLevel", ")", "throws", "ConstraintException", "{", "// now checking constraints\r", "FieldDescriptorConstraints", "fieldConstraints", "=", "new", "FieldDescriptorConstraints", "(", ")", ";", "ReferenceDescriptorConstraints", "refConstraints", "=", "new", "ReferenceDescriptorConstraints", "(", ")", ";", "CollectionDescriptorConstraints", "collConstraints", "=", "new", "CollectionDescriptorConstraints", "(", ")", ";", "for", "(", "Iterator", "it", "=", "getFields", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "fieldConstraints", ".", "check", "(", "(", "FieldDescriptorDef", ")", "it", ".", "next", "(", ")", ",", "checkLevel", ")", ";", "}", "for", "(", "Iterator", "it", "=", "getReferences", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "refConstraints", ".", "check", "(", "(", "ReferenceDescriptorDef", ")", "it", ".", "next", "(", ")", ",", "checkLevel", ")", ";", "}", "for", "(", "Iterator", "it", "=", "getCollections", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "collConstraints", ".", "check", "(", "(", "CollectionDescriptorDef", ")", "it", ".", "next", "(", ")", ",", "checkLevel", ")", ";", "}", "new", "ClassDescriptorConstraints", "(", ")", ".", "check", "(", "this", ",", "checkLevel", ")", ";", "}" ]
Checks the constraints on this class. @param checkLevel The amount of checks to perform @exception ConstraintException If a constraint has been violated
[ "Checks", "the", "constraints", "on", "this", "class", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java#L266-L286
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java
ClassDescriptorDef.contains
private boolean contains(ArrayList defs, DefBase obj) { for (Iterator it = defs.iterator(); it.hasNext();) { if (obj.getName().equals(((DefBase)it.next()).getName())) { return true; } } return false; }
java
private boolean contains(ArrayList defs, DefBase obj) { for (Iterator it = defs.iterator(); it.hasNext();) { if (obj.getName().equals(((DefBase)it.next()).getName())) { return true; } } return false; }
[ "private", "boolean", "contains", "(", "ArrayList", "defs", ",", "DefBase", "obj", ")", "{", "for", "(", "Iterator", "it", "=", "defs", ".", "iterator", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "if", "(", "obj", ".", "getName", "(", ")", ".", "equals", "(", "(", "(", "DefBase", ")", "it", ".", "next", "(", ")", ")", ".", "getName", "(", ")", ")", ")", "{", "return", "true", ";", "}", "}", "return", "false", ";", "}" ]
Determines whether the given list contains a descriptor with the same name. @param defs The list to search @param obj The object that is searched for @return <code>true</code> if the list contains a descriptor with the same name
[ "Determines", "whether", "the", "given", "list", "contains", "a", "descriptor", "with", "the", "same", "name", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java#L319-L329
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java
ClassDescriptorDef.cloneField
private FieldDescriptorDef cloneField(FieldDescriptorDef fieldDef, String prefix) { FieldDescriptorDef copyFieldDef = new FieldDescriptorDef(fieldDef, prefix); copyFieldDef.setOwner(this); // we remove properties that are only relevant to the class the features are declared in copyFieldDef.setProperty(PropertyHelper.OJB_PROPERTY_IGNORE, null); Properties mod = getModification(copyFieldDef.getName()); if (mod != null) { if (!PropertyHelper.toBoolean(mod.getProperty(PropertyHelper.OJB_PROPERTY_IGNORE), false) && hasFeature(copyFieldDef.getName())) { LogHelper.warn(true, ClassDescriptorDef.class, "process", "Class "+getName()+" has a feature that has the same name as its included field "+ copyFieldDef.getName()+" from class "+fieldDef.getOwner().getName()); } copyFieldDef.applyModifications(mod); } return copyFieldDef; }
java
private FieldDescriptorDef cloneField(FieldDescriptorDef fieldDef, String prefix) { FieldDescriptorDef copyFieldDef = new FieldDescriptorDef(fieldDef, prefix); copyFieldDef.setOwner(this); // we remove properties that are only relevant to the class the features are declared in copyFieldDef.setProperty(PropertyHelper.OJB_PROPERTY_IGNORE, null); Properties mod = getModification(copyFieldDef.getName()); if (mod != null) { if (!PropertyHelper.toBoolean(mod.getProperty(PropertyHelper.OJB_PROPERTY_IGNORE), false) && hasFeature(copyFieldDef.getName())) { LogHelper.warn(true, ClassDescriptorDef.class, "process", "Class "+getName()+" has a feature that has the same name as its included field "+ copyFieldDef.getName()+" from class "+fieldDef.getOwner().getName()); } copyFieldDef.applyModifications(mod); } return copyFieldDef; }
[ "private", "FieldDescriptorDef", "cloneField", "(", "FieldDescriptorDef", "fieldDef", ",", "String", "prefix", ")", "{", "FieldDescriptorDef", "copyFieldDef", "=", "new", "FieldDescriptorDef", "(", "fieldDef", ",", "prefix", ")", ";", "copyFieldDef", ".", "setOwner", "(", "this", ")", ";", "// we remove properties that are only relevant to the class the features are declared in\r", "copyFieldDef", ".", "setProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_IGNORE", ",", "null", ")", ";", "Properties", "mod", "=", "getModification", "(", "copyFieldDef", ".", "getName", "(", ")", ")", ";", "if", "(", "mod", "!=", "null", ")", "{", "if", "(", "!", "PropertyHelper", ".", "toBoolean", "(", "mod", ".", "getProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_IGNORE", ")", ",", "false", ")", "&&", "hasFeature", "(", "copyFieldDef", ".", "getName", "(", ")", ")", ")", "{", "LogHelper", ".", "warn", "(", "true", ",", "ClassDescriptorDef", ".", "class", ",", "\"process\"", ",", "\"Class \"", "+", "getName", "(", ")", "+", "\" has a feature that has the same name as its included field \"", "+", "copyFieldDef", ".", "getName", "(", ")", "+", "\" from class \"", "+", "fieldDef", ".", "getOwner", "(", ")", ".", "getName", "(", ")", ")", ";", "}", "copyFieldDef", ".", "applyModifications", "(", "mod", ")", ";", "}", "return", "copyFieldDef", ";", "}" ]
Clones the given field. @param fieldDef The field descriptor @param prefix A prefix for the name @return The cloned field
[ "Clones", "the", "given", "field", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java#L446-L470
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java
ClassDescriptorDef.cloneReference
private ReferenceDescriptorDef cloneReference(ReferenceDescriptorDef refDef, String prefix) { ReferenceDescriptorDef copyRefDef = new ReferenceDescriptorDef(refDef, prefix); copyRefDef.setOwner(this); // we remove properties that are only relevant to the class the features are declared in copyRefDef.setProperty(PropertyHelper.OJB_PROPERTY_IGNORE, null); Properties mod = getModification(copyRefDef.getName()); if (mod != null) { if (!PropertyHelper.toBoolean(mod.getProperty(PropertyHelper.OJB_PROPERTY_IGNORE), false) && hasFeature(copyRefDef.getName())) { LogHelper.warn(true, ClassDescriptorDef.class, "process", "Class "+getName()+" has a feature that has the same name as its included reference "+ copyRefDef.getName()+" from class "+refDef.getOwner().getName()); } copyRefDef.applyModifications(mod); } return copyRefDef; }
java
private ReferenceDescriptorDef cloneReference(ReferenceDescriptorDef refDef, String prefix) { ReferenceDescriptorDef copyRefDef = new ReferenceDescriptorDef(refDef, prefix); copyRefDef.setOwner(this); // we remove properties that are only relevant to the class the features are declared in copyRefDef.setProperty(PropertyHelper.OJB_PROPERTY_IGNORE, null); Properties mod = getModification(copyRefDef.getName()); if (mod != null) { if (!PropertyHelper.toBoolean(mod.getProperty(PropertyHelper.OJB_PROPERTY_IGNORE), false) && hasFeature(copyRefDef.getName())) { LogHelper.warn(true, ClassDescriptorDef.class, "process", "Class "+getName()+" has a feature that has the same name as its included reference "+ copyRefDef.getName()+" from class "+refDef.getOwner().getName()); } copyRefDef.applyModifications(mod); } return copyRefDef; }
[ "private", "ReferenceDescriptorDef", "cloneReference", "(", "ReferenceDescriptorDef", "refDef", ",", "String", "prefix", ")", "{", "ReferenceDescriptorDef", "copyRefDef", "=", "new", "ReferenceDescriptorDef", "(", "refDef", ",", "prefix", ")", ";", "copyRefDef", ".", "setOwner", "(", "this", ")", ";", "// we remove properties that are only relevant to the class the features are declared in\r", "copyRefDef", ".", "setProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_IGNORE", ",", "null", ")", ";", "Properties", "mod", "=", "getModification", "(", "copyRefDef", ".", "getName", "(", ")", ")", ";", "if", "(", "mod", "!=", "null", ")", "{", "if", "(", "!", "PropertyHelper", ".", "toBoolean", "(", "mod", ".", "getProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_IGNORE", ")", ",", "false", ")", "&&", "hasFeature", "(", "copyRefDef", ".", "getName", "(", ")", ")", ")", "{", "LogHelper", ".", "warn", "(", "true", ",", "ClassDescriptorDef", ".", "class", ",", "\"process\"", ",", "\"Class \"", "+", "getName", "(", ")", "+", "\" has a feature that has the same name as its included reference \"", "+", "copyRefDef", ".", "getName", "(", ")", "+", "\" from class \"", "+", "refDef", ".", "getOwner", "(", ")", ".", "getName", "(", ")", ")", ";", "}", "copyRefDef", ".", "applyModifications", "(", "mod", ")", ";", "}", "return", "copyRefDef", ";", "}" ]
Clones the given reference. @param refDef The reference descriptor @param prefix A prefix for the name @return The cloned reference
[ "Clones", "the", "given", "reference", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java#L479-L503
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java
ClassDescriptorDef.cloneCollection
private CollectionDescriptorDef cloneCollection(CollectionDescriptorDef collDef, String prefix) { CollectionDescriptorDef copyCollDef = new CollectionDescriptorDef(collDef, prefix); copyCollDef.setOwner(this); // we remove properties that are only relevant to the class the features are declared in copyCollDef.setProperty(PropertyHelper.OJB_PROPERTY_IGNORE, null); Properties mod = getModification(copyCollDef.getName()); if (mod != null) { if (!PropertyHelper.toBoolean(mod.getProperty(PropertyHelper.OJB_PROPERTY_IGNORE), false) && hasFeature(copyCollDef.getName())) { LogHelper.warn(true, ClassDescriptorDef.class, "process", "Class "+getName()+" has a feature that has the same name as its included collection "+ copyCollDef.getName()+" from class "+collDef.getOwner().getName()); } copyCollDef.applyModifications(mod); } return copyCollDef; }
java
private CollectionDescriptorDef cloneCollection(CollectionDescriptorDef collDef, String prefix) { CollectionDescriptorDef copyCollDef = new CollectionDescriptorDef(collDef, prefix); copyCollDef.setOwner(this); // we remove properties that are only relevant to the class the features are declared in copyCollDef.setProperty(PropertyHelper.OJB_PROPERTY_IGNORE, null); Properties mod = getModification(copyCollDef.getName()); if (mod != null) { if (!PropertyHelper.toBoolean(mod.getProperty(PropertyHelper.OJB_PROPERTY_IGNORE), false) && hasFeature(copyCollDef.getName())) { LogHelper.warn(true, ClassDescriptorDef.class, "process", "Class "+getName()+" has a feature that has the same name as its included collection "+ copyCollDef.getName()+" from class "+collDef.getOwner().getName()); } copyCollDef.applyModifications(mod); } return copyCollDef; }
[ "private", "CollectionDescriptorDef", "cloneCollection", "(", "CollectionDescriptorDef", "collDef", ",", "String", "prefix", ")", "{", "CollectionDescriptorDef", "copyCollDef", "=", "new", "CollectionDescriptorDef", "(", "collDef", ",", "prefix", ")", ";", "copyCollDef", ".", "setOwner", "(", "this", ")", ";", "// we remove properties that are only relevant to the class the features are declared in\r", "copyCollDef", ".", "setProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_IGNORE", ",", "null", ")", ";", "Properties", "mod", "=", "getModification", "(", "copyCollDef", ".", "getName", "(", ")", ")", ";", "if", "(", "mod", "!=", "null", ")", "{", "if", "(", "!", "PropertyHelper", ".", "toBoolean", "(", "mod", ".", "getProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_IGNORE", ")", ",", "false", ")", "&&", "hasFeature", "(", "copyCollDef", ".", "getName", "(", ")", ")", ")", "{", "LogHelper", ".", "warn", "(", "true", ",", "ClassDescriptorDef", ".", "class", ",", "\"process\"", ",", "\"Class \"", "+", "getName", "(", ")", "+", "\" has a feature that has the same name as its included collection \"", "+", "copyCollDef", ".", "getName", "(", ")", "+", "\" from class \"", "+", "collDef", ".", "getOwner", "(", ")", ".", "getName", "(", ")", ")", ";", "}", "copyCollDef", ".", "applyModifications", "(", "mod", ")", ";", "}", "return", "copyCollDef", ";", "}" ]
Clones the given collection. @param collDef The collection descriptor @param prefix A prefix for the name @return The cloned collection
[ "Clones", "the", "given", "collection", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java#L512-L536
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java
ClassDescriptorDef.getAllBaseTypes
public Iterator getAllBaseTypes() { ArrayList baseTypes = new ArrayList(); baseTypes.addAll(_directBaseTypes.values()); for (int idx = baseTypes.size() - 1; idx >= 0; idx--) { ClassDescriptorDef curClassDef = (ClassDescriptorDef)baseTypes.get(idx); for (Iterator it = curClassDef.getDirectBaseTypes(); it.hasNext();) { ClassDescriptorDef curBaseTypeDef = (ClassDescriptorDef)it.next(); if (!baseTypes.contains(curBaseTypeDef)) { baseTypes.add(0, curBaseTypeDef); idx++; } } } return baseTypes.iterator(); }
java
public Iterator getAllBaseTypes() { ArrayList baseTypes = new ArrayList(); baseTypes.addAll(_directBaseTypes.values()); for (int idx = baseTypes.size() - 1; idx >= 0; idx--) { ClassDescriptorDef curClassDef = (ClassDescriptorDef)baseTypes.get(idx); for (Iterator it = curClassDef.getDirectBaseTypes(); it.hasNext();) { ClassDescriptorDef curBaseTypeDef = (ClassDescriptorDef)it.next(); if (!baseTypes.contains(curBaseTypeDef)) { baseTypes.add(0, curBaseTypeDef); idx++; } } } return baseTypes.iterator(); }
[ "public", "Iterator", "getAllBaseTypes", "(", ")", "{", "ArrayList", "baseTypes", "=", "new", "ArrayList", "(", ")", ";", "baseTypes", ".", "addAll", "(", "_directBaseTypes", ".", "values", "(", ")", ")", ";", "for", "(", "int", "idx", "=", "baseTypes", ".", "size", "(", ")", "-", "1", ";", "idx", ">=", "0", ";", "idx", "--", ")", "{", "ClassDescriptorDef", "curClassDef", "=", "(", "ClassDescriptorDef", ")", "baseTypes", ".", "get", "(", "idx", ")", ";", "for", "(", "Iterator", "it", "=", "curClassDef", ".", "getDirectBaseTypes", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "ClassDescriptorDef", "curBaseTypeDef", "=", "(", "ClassDescriptorDef", ")", "it", ".", "next", "(", ")", ";", "if", "(", "!", "baseTypes", ".", "contains", "(", "curBaseTypeDef", ")", ")", "{", "baseTypes", ".", "add", "(", "0", ",", "curBaseTypeDef", ")", ";", "idx", "++", ";", "}", "}", "}", "return", "baseTypes", ".", "iterator", "(", ")", ";", "}" ]
Returns all base types. @return An iterator of the base types
[ "Returns", "all", "base", "types", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java#L563-L585
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java
ClassDescriptorDef.getAllExtentClasses
public Iterator getAllExtentClasses() { ArrayList subTypes = new ArrayList(); subTypes.addAll(_extents); for (int idx = 0; idx < subTypes.size(); idx++) { ClassDescriptorDef curClassDef = (ClassDescriptorDef)subTypes.get(idx); for (Iterator it = curClassDef.getExtentClasses(); it.hasNext();) { ClassDescriptorDef curSubTypeDef = (ClassDescriptorDef)it.next(); if (!subTypes.contains(curSubTypeDef)) { subTypes.add(curSubTypeDef); } } } return subTypes.iterator(); }
java
public Iterator getAllExtentClasses() { ArrayList subTypes = new ArrayList(); subTypes.addAll(_extents); for (int idx = 0; idx < subTypes.size(); idx++) { ClassDescriptorDef curClassDef = (ClassDescriptorDef)subTypes.get(idx); for (Iterator it = curClassDef.getExtentClasses(); it.hasNext();) { ClassDescriptorDef curSubTypeDef = (ClassDescriptorDef)it.next(); if (!subTypes.contains(curSubTypeDef)) { subTypes.add(curSubTypeDef); } } } return subTypes.iterator(); }
[ "public", "Iterator", "getAllExtentClasses", "(", ")", "{", "ArrayList", "subTypes", "=", "new", "ArrayList", "(", ")", ";", "subTypes", ".", "addAll", "(", "_extents", ")", ";", "for", "(", "int", "idx", "=", "0", ";", "idx", "<", "subTypes", ".", "size", "(", ")", ";", "idx", "++", ")", "{", "ClassDescriptorDef", "curClassDef", "=", "(", "ClassDescriptorDef", ")", "subTypes", ".", "get", "(", "idx", ")", ";", "for", "(", "Iterator", "it", "=", "curClassDef", ".", "getExtentClasses", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "ClassDescriptorDef", "curSubTypeDef", "=", "(", "ClassDescriptorDef", ")", "it", ".", "next", "(", ")", ";", "if", "(", "!", "subTypes", ".", "contains", "(", "curSubTypeDef", ")", ")", "{", "subTypes", ".", "add", "(", "curSubTypeDef", ")", ";", "}", "}", "}", "return", "subTypes", ".", "iterator", "(", ")", ";", "}" ]
Returns an iterator of all direct and indirect extents of this class. @return The extents iterator
[ "Returns", "an", "iterator", "of", "all", "direct", "and", "indirect", "extents", "of", "this", "class", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java#L617-L638
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java
ClassDescriptorDef.getField
public FieldDescriptorDef getField(String name) { FieldDescriptorDef fieldDef = null; for (Iterator it = _fields.iterator(); it.hasNext(); ) { fieldDef = (FieldDescriptorDef)it.next(); if (fieldDef.getName().equals(name)) { return fieldDef; } } return null; }
java
public FieldDescriptorDef getField(String name) { FieldDescriptorDef fieldDef = null; for (Iterator it = _fields.iterator(); it.hasNext(); ) { fieldDef = (FieldDescriptorDef)it.next(); if (fieldDef.getName().equals(name)) { return fieldDef; } } return null; }
[ "public", "FieldDescriptorDef", "getField", "(", "String", "name", ")", "{", "FieldDescriptorDef", "fieldDef", "=", "null", ";", "for", "(", "Iterator", "it", "=", "_fields", ".", "iterator", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "fieldDef", "=", "(", "FieldDescriptorDef", ")", "it", ".", "next", "(", ")", ";", "if", "(", "fieldDef", ".", "getName", "(", ")", ".", "equals", "(", "name", ")", ")", "{", "return", "fieldDef", ";", "}", "}", "return", "null", ";", "}" ]
Returns the field definition with the specified name. @param name The name of the desired field @return The field definition or <code>null</code> if there is no such field
[ "Returns", "the", "field", "definition", "with", "the", "specified", "name", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java#L709-L722
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java
ClassDescriptorDef.getFields
public ArrayList getFields(String fieldNames) throws NoSuchFieldException { ArrayList result = new ArrayList(); FieldDescriptorDef fieldDef; String name; for (CommaListIterator it = new CommaListIterator(fieldNames); it.hasNext();) { name = it.getNext(); fieldDef = getField(name); if (fieldDef == null) { throw new NoSuchFieldException(name); } result.add(fieldDef); } return result; }
java
public ArrayList getFields(String fieldNames) throws NoSuchFieldException { ArrayList result = new ArrayList(); FieldDescriptorDef fieldDef; String name; for (CommaListIterator it = new CommaListIterator(fieldNames); it.hasNext();) { name = it.getNext(); fieldDef = getField(name); if (fieldDef == null) { throw new NoSuchFieldException(name); } result.add(fieldDef); } return result; }
[ "public", "ArrayList", "getFields", "(", "String", "fieldNames", ")", "throws", "NoSuchFieldException", "{", "ArrayList", "result", "=", "new", "ArrayList", "(", ")", ";", "FieldDescriptorDef", "fieldDef", ";", "String", "name", ";", "for", "(", "CommaListIterator", "it", "=", "new", "CommaListIterator", "(", "fieldNames", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "name", "=", "it", ".", "getNext", "(", ")", ";", "fieldDef", "=", "getField", "(", "name", ")", ";", "if", "(", "fieldDef", "==", "null", ")", "{", "throw", "new", "NoSuchFieldException", "(", "name", ")", ";", "}", "result", ".", "add", "(", "fieldDef", ")", ";", "}", "return", "result", ";", "}" ]
Returns the field descriptors given in the the field names list. @param fieldNames The field names, separated by commas @return The field descriptors in the order given by the field names @throws NoSuchFieldException If a field hasn't been found
[ "Returns", "the", "field", "descriptors", "given", "in", "the", "the", "field", "names", "list", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java#L741-L758
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java
ClassDescriptorDef.getPrimaryKeys
public ArrayList getPrimaryKeys() { ArrayList result = new ArrayList(); FieldDescriptorDef fieldDef; for (Iterator it = getFields(); it.hasNext();) { fieldDef = (FieldDescriptorDef)it.next(); if (fieldDef.getBooleanProperty(PropertyHelper.OJB_PROPERTY_PRIMARYKEY, false)) { result.add(fieldDef); } } return result; }
java
public ArrayList getPrimaryKeys() { ArrayList result = new ArrayList(); FieldDescriptorDef fieldDef; for (Iterator it = getFields(); it.hasNext();) { fieldDef = (FieldDescriptorDef)it.next(); if (fieldDef.getBooleanProperty(PropertyHelper.OJB_PROPERTY_PRIMARYKEY, false)) { result.add(fieldDef); } } return result; }
[ "public", "ArrayList", "getPrimaryKeys", "(", ")", "{", "ArrayList", "result", "=", "new", "ArrayList", "(", ")", ";", "FieldDescriptorDef", "fieldDef", ";", "for", "(", "Iterator", "it", "=", "getFields", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "fieldDef", "=", "(", "FieldDescriptorDef", ")", "it", ".", "next", "(", ")", ";", "if", "(", "fieldDef", ".", "getBooleanProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_PRIMARYKEY", ",", "false", ")", ")", "{", "result", ".", "add", "(", "fieldDef", ")", ";", "}", "}", "return", "result", ";", "}" ]
Returns the primarykey fields. @return The field descriptors of the primarykey fields
[ "Returns", "the", "primarykey", "fields", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java#L765-L779
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java
ClassDescriptorDef.getReference
public ReferenceDescriptorDef getReference(String name) { ReferenceDescriptorDef refDef; for (Iterator it = _references.iterator(); it.hasNext(); ) { refDef = (ReferenceDescriptorDef)it.next(); if (refDef.getName().equals(name)) { return refDef; } } return null; }
java
public ReferenceDescriptorDef getReference(String name) { ReferenceDescriptorDef refDef; for (Iterator it = _references.iterator(); it.hasNext(); ) { refDef = (ReferenceDescriptorDef)it.next(); if (refDef.getName().equals(name)) { return refDef; } } return null; }
[ "public", "ReferenceDescriptorDef", "getReference", "(", "String", "name", ")", "{", "ReferenceDescriptorDef", "refDef", ";", "for", "(", "Iterator", "it", "=", "_references", ".", "iterator", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "refDef", "=", "(", "ReferenceDescriptorDef", ")", "it", ".", "next", "(", ")", ";", "if", "(", "refDef", ".", "getName", "(", ")", ".", "equals", "(", "name", ")", ")", "{", "return", "refDef", ";", "}", "}", "return", "null", ";", "}" ]
Returns a reference definition of the given name if it exists. @param name The name of the reference @return The reference def or <code>null</code> if there is no such reference
[ "Returns", "a", "reference", "definition", "of", "the", "given", "name", "if", "it", "exists", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java#L798-L811
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java
ClassDescriptorDef.getCollection
public CollectionDescriptorDef getCollection(String name) { CollectionDescriptorDef collDef = null; for (Iterator it = _collections.iterator(); it.hasNext(); ) { collDef = (CollectionDescriptorDef)it.next(); if (collDef.getName().equals(name)) { return collDef; } } return null; }
java
public CollectionDescriptorDef getCollection(String name) { CollectionDescriptorDef collDef = null; for (Iterator it = _collections.iterator(); it.hasNext(); ) { collDef = (CollectionDescriptorDef)it.next(); if (collDef.getName().equals(name)) { return collDef; } } return null; }
[ "public", "CollectionDescriptorDef", "getCollection", "(", "String", "name", ")", "{", "CollectionDescriptorDef", "collDef", "=", "null", ";", "for", "(", "Iterator", "it", "=", "_collections", ".", "iterator", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "collDef", "=", "(", "CollectionDescriptorDef", ")", "it", ".", "next", "(", ")", ";", "if", "(", "collDef", ".", "getName", "(", ")", ".", "equals", "(", "name", ")", ")", "{", "return", "collDef", ";", "}", "}", "return", "null", ";", "}" ]
Returns the collection definition of the given name if it exists. @param name The name of the collection @return The collection definition or <code>null</code> if there is no such collection
[ "Returns", "the", "collection", "definition", "of", "the", "given", "name", "if", "it", "exists", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java#L840-L853
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java
ClassDescriptorDef.getNested
public NestedDef getNested(String name) { NestedDef nestedDef = null; for (Iterator it = _nested.iterator(); it.hasNext(); ) { nestedDef = (NestedDef)it.next(); if (nestedDef.getName().equals(name)) { return nestedDef; } } return null; }
java
public NestedDef getNested(String name) { NestedDef nestedDef = null; for (Iterator it = _nested.iterator(); it.hasNext(); ) { nestedDef = (NestedDef)it.next(); if (nestedDef.getName().equals(name)) { return nestedDef; } } return null; }
[ "public", "NestedDef", "getNested", "(", "String", "name", ")", "{", "NestedDef", "nestedDef", "=", "null", ";", "for", "(", "Iterator", "it", "=", "_nested", ".", "iterator", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "nestedDef", "=", "(", "NestedDef", ")", "it", ".", "next", "(", ")", ";", "if", "(", "nestedDef", ".", "getName", "(", ")", ".", "equals", "(", "name", ")", ")", "{", "return", "nestedDef", ";", "}", "}", "return", "null", ";", "}" ]
Returns the nested object definition with the specified name. @param name The name of the attribute of the nested object @return The nested object definition or <code>null</code> if there is no such nested object
[ "Returns", "the", "nested", "object", "definition", "with", "the", "specified", "name", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java#L882-L895
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java
ClassDescriptorDef.getIndexDescriptor
public IndexDescriptorDef getIndexDescriptor(String name) { IndexDescriptorDef indexDef = null; for (Iterator it = _indexDescriptors.iterator(); it.hasNext(); ) { indexDef = (IndexDescriptorDef)it.next(); if (indexDef.getName().equals(name)) { return indexDef; } } return null; }
java
public IndexDescriptorDef getIndexDescriptor(String name) { IndexDescriptorDef indexDef = null; for (Iterator it = _indexDescriptors.iterator(); it.hasNext(); ) { indexDef = (IndexDescriptorDef)it.next(); if (indexDef.getName().equals(name)) { return indexDef; } } return null; }
[ "public", "IndexDescriptorDef", "getIndexDescriptor", "(", "String", "name", ")", "{", "IndexDescriptorDef", "indexDef", "=", "null", ";", "for", "(", "Iterator", "it", "=", "_indexDescriptors", ".", "iterator", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "indexDef", "=", "(", "IndexDescriptorDef", ")", "it", ".", "next", "(", ")", ";", "if", "(", "indexDef", ".", "getName", "(", ")", ".", "equals", "(", "name", ")", ")", "{", "return", "indexDef", ";", "}", "}", "return", "null", ";", "}" ]
Returns the index descriptor definition of the given name if it exists. @param name The name of the index @return The index descriptor definition or <code>null</code> if there is no such index
[ "Returns", "the", "index", "descriptor", "definition", "of", "the", "given", "name", "if", "it", "exists", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java#L924-L937
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java
ClassDescriptorDef.addProcedure
public void addProcedure(ProcedureDef procDef) { procDef.setOwner(this); _procedures.put(procDef.getName(), procDef); }
java
public void addProcedure(ProcedureDef procDef) { procDef.setOwner(this); _procedures.put(procDef.getName(), procDef); }
[ "public", "void", "addProcedure", "(", "ProcedureDef", "procDef", ")", "{", "procDef", ".", "setOwner", "(", "this", ")", ";", "_procedures", ".", "put", "(", "procDef", ".", "getName", "(", ")", ",", "procDef", ")", ";", "}" ]
Adds a procedure definition to this class descriptor. @param procDef The procedure definition
[ "Adds", "a", "procedure", "definition", "to", "this", "class", "descriptor", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java#L981-L985
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java
ClassDescriptorDef.addProcedureArgument
public void addProcedureArgument(ProcedureArgumentDef argDef) { argDef.setOwner(this); _procedureArguments.put(argDef.getName(), argDef); }
java
public void addProcedureArgument(ProcedureArgumentDef argDef) { argDef.setOwner(this); _procedureArguments.put(argDef.getName(), argDef); }
[ "public", "void", "addProcedureArgument", "(", "ProcedureArgumentDef", "argDef", ")", "{", "argDef", ".", "setOwner", "(", "this", ")", ";", "_procedureArguments", ".", "put", "(", "argDef", ".", "getName", "(", ")", ",", "argDef", ")", ";", "}" ]
Adds a procedure argument definition to this class descriptor. @param argDef The procedure argument definition
[ "Adds", "a", "procedure", "argument", "definition", "to", "this", "class", "descriptor", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/model/ClassDescriptorDef.java#L1013-L1017
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.processClass
public void processClass(String template, Properties attributes) throws XDocletException { if (!_model.hasClass(getCurrentClass().getQualifiedName())) { // we only want to output the log message once LogHelper.debug(true, OjbTagsHandler.class, "processClass", "Type "+getCurrentClass().getQualifiedName()); } ClassDescriptorDef classDef = ensureClassDef(getCurrentClass()); String attrName; for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); classDef.setProperty(attrName, attributes.getProperty(attrName)); } _curClassDef = classDef; generate(template); _curClassDef = null; }
java
public void processClass(String template, Properties attributes) throws XDocletException { if (!_model.hasClass(getCurrentClass().getQualifiedName())) { // we only want to output the log message once LogHelper.debug(true, OjbTagsHandler.class, "processClass", "Type "+getCurrentClass().getQualifiedName()); } ClassDescriptorDef classDef = ensureClassDef(getCurrentClass()); String attrName; for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); classDef.setProperty(attrName, attributes.getProperty(attrName)); } _curClassDef = classDef; generate(template); _curClassDef = null; }
[ "public", "void", "processClass", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "if", "(", "!", "_model", ".", "hasClass", "(", "getCurrentClass", "(", ")", ".", "getQualifiedName", "(", ")", ")", ")", "{", "// we only want to output the log message once\r", "LogHelper", ".", "debug", "(", "true", ",", "OjbTagsHandler", ".", "class", ",", "\"processClass\"", ",", "\"Type \"", "+", "getCurrentClass", "(", ")", ".", "getQualifiedName", "(", ")", ")", ";", "}", "ClassDescriptorDef", "classDef", "=", "ensureClassDef", "(", "getCurrentClass", "(", ")", ")", ";", "String", "attrName", ";", "for", "(", "Enumeration", "attrNames", "=", "attributes", ".", "propertyNames", "(", ")", ";", "attrNames", ".", "hasMoreElements", "(", ")", ";", ")", "{", "attrName", "=", "(", "String", ")", "attrNames", ".", "nextElement", "(", ")", ";", "classDef", ".", "setProperty", "(", "attrName", ",", "attributes", ".", "getProperty", "(", "attrName", ")", ")", ";", "}", "_curClassDef", "=", "classDef", ";", "generate", "(", "template", ")", ";", "_curClassDef", "=", "null", ";", "}" ]
Sets the current class definition derived from the current class, and optionally some attributes. @param template The template @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="block" @doc.param name="accept-locks" optional="true" description="The accept locks setting" values="true,false" @doc.param name="attributes" optional="true" description="Attributes of the class as name-value pairs 'name=value', separated by commas" @doc.param name="determine-extents" optional="true" description="Whether to determine persistent direct sub types automatically" values="true,false" @doc.param name="documentation" optional="true" description="Documentation on the class" @doc.param name="factory-method" optional="true" description="Specifies a no-argument factory method that is used to create instances (not yet implemented !)" @doc.param name="factory-class" optional="true" description="Specifies a factory class to be used for creating objects of this class" @doc.param name="factory-method" optional="true" description="Specifies a static no-argument method in the factory class" @doc.param name="generate-repository-info" optional="true" description="Whether repository data should be generated for the class" values="true,false" @doc.param name="generate-table-info" optional="true" description="Whether table data should be generated for the class" values="true,false" @doc.param name="include-inherited" optional="true" description="Whether to include fields/references/collections of supertypes" values="true,false" @doc.param name="initialization-method" optional="true" description="Specifies a no-argument instance method that is called right after an instance has been read from the database" @doc.param name="isolation-level" optional="true" description="The isolation level setting" @doc.param name="proxy" optional="true" description="The proxy setting for this class" @doc.param name="proxy-prefetching-limit" optional="true" description="Specifies the amount of objects of objects of this class to prefetch in collections" @doc.param name="refresh" optional="true" description="Can be set to force OJB to refresh instances when loaded from the cache" values="true,false" @doc.param name="row-reader" optional="true" description="The row reader for the class" @doc.param name="schema" optional="true" description="The schema for the type" @doc.param name="table" optional="true" description="The table for the class" @doc.param name="table-documentation" optional="true" description="Documentation on the table"
[ "Sets", "the", "current", "class", "definition", "derived", "from", "the", "current", "class", "and", "optionally", "some", "attributes", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L143-L162
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.forAllClassDefinitions
public void forAllClassDefinitions(String template, Properties attributes) throws XDocletException { for (Iterator it = _model.getClasses(); it.hasNext(); ) { _curClassDef = (ClassDescriptorDef)it.next(); generate(template); } _curClassDef = null; LogHelper.debug(true, OjbTagsHandler.class, "forAllClassDefinitions", "Processed "+_model.getNumClasses()+" types"); }
java
public void forAllClassDefinitions(String template, Properties attributes) throws XDocletException { for (Iterator it = _model.getClasses(); it.hasNext(); ) { _curClassDef = (ClassDescriptorDef)it.next(); generate(template); } _curClassDef = null; LogHelper.debug(true, OjbTagsHandler.class, "forAllClassDefinitions", "Processed "+_model.getNumClasses()+" types"); }
[ "public", "void", "forAllClassDefinitions", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "for", "(", "Iterator", "it", "=", "_model", ".", "getClasses", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "_curClassDef", "=", "(", "ClassDescriptorDef", ")", "it", ".", "next", "(", ")", ";", "generate", "(", "template", ")", ";", "}", "_curClassDef", "=", "null", ";", "LogHelper", ".", "debug", "(", "true", ",", "OjbTagsHandler", ".", "class", ",", "\"forAllClassDefinitions\"", ",", "\"Processed \"", "+", "_model", ".", "getNumClasses", "(", ")", "+", "\" types\"", ")", ";", "}" ]
Processes the template for all class definitions. @param template The template @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="block"
[ "Processes", "the", "template", "for", "all", "class", "definitions", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L172-L182
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.originalClass
public void originalClass(String template, Properties attributes) throws XDocletException { pushCurrentClass(_curClassDef.getOriginalClass()); generate(template); popCurrentClass(); }
java
public void originalClass(String template, Properties attributes) throws XDocletException { pushCurrentClass(_curClassDef.getOriginalClass()); generate(template); popCurrentClass(); }
[ "public", "void", "originalClass", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "pushCurrentClass", "(", "_curClassDef", ".", "getOriginalClass", "(", ")", ")", ";", "generate", "(", "template", ")", ";", "popCurrentClass", "(", ")", ";", "}" ]
Processes the original class rather than the current class definition. @param template The template @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="block"
[ "Processes", "the", "original", "class", "rather", "than", "the", "current", "class", "definition", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L192-L197
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.addExtent
public String addExtent(Properties attributes) throws XDocletException { String name = attributes.getProperty(ATTRIBUTE_NAME); if (!_model.hasClass(name)) { throw new XDocletException(Translator.getString(XDocletModulesOjbMessages.class, XDocletModulesOjbMessages.COULD_NOT_FIND_TYPE, new String[]{name})); } _curClassDef.addExtentClass(_model.getClass(name)); return ""; }
java
public String addExtent(Properties attributes) throws XDocletException { String name = attributes.getProperty(ATTRIBUTE_NAME); if (!_model.hasClass(name)) { throw new XDocletException(Translator.getString(XDocletModulesOjbMessages.class, XDocletModulesOjbMessages.COULD_NOT_FIND_TYPE, new String[]{name})); } _curClassDef.addExtentClass(_model.getClass(name)); return ""; }
[ "public", "String", "addExtent", "(", "Properties", "attributes", ")", "throws", "XDocletException", "{", "String", "name", "=", "attributes", ".", "getProperty", "(", "ATTRIBUTE_NAME", ")", ";", "if", "(", "!", "_model", ".", "hasClass", "(", "name", ")", ")", "{", "throw", "new", "XDocletException", "(", "Translator", ".", "getString", "(", "XDocletModulesOjbMessages", ".", "class", ",", "XDocletModulesOjbMessages", ".", "COULD_NOT_FIND_TYPE", ",", "new", "String", "[", "]", "{", "name", "}", ")", ")", ";", "}", "_curClassDef", ".", "addExtentClass", "(", "_model", ".", "getClass", "(", "name", ")", ")", ";", "return", "\"\"", ";", "}" ]
Adds an extent relation to the current class definition. @param attributes The attributes of the tag @return An empty string @exception XDocletException If an error occurs @doc.tag type="content" @doc.param name="name" optional="false" description="The fully qualified name of the extending class"
[ "Adds", "an", "extent", "relation", "to", "the", "current", "class", "definition", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L325-L337
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.forAllExtents
public void forAllExtents(String template, Properties attributes) throws XDocletException { for (Iterator it = _curClassDef.getExtentClasses(); it.hasNext(); ) { _curExtent = (ClassDescriptorDef)it.next(); generate(template); } _curExtent = null; }
java
public void forAllExtents(String template, Properties attributes) throws XDocletException { for (Iterator it = _curClassDef.getExtentClasses(); it.hasNext(); ) { _curExtent = (ClassDescriptorDef)it.next(); generate(template); } _curExtent = null; }
[ "public", "void", "forAllExtents", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "for", "(", "Iterator", "it", "=", "_curClassDef", ".", "getExtentClasses", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "_curExtent", "=", "(", "ClassDescriptorDef", ")", "it", ".", "next", "(", ")", ";", "generate", "(", "template", ")", ";", "}", "_curExtent", "=", "null", ";", "}" ]
Processes the template for all extents of the current class. @param template The template @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="block"
[ "Processes", "the", "template", "for", "all", "extents", "of", "the", "current", "class", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L347-L355
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.processIndexDescriptor
public String processIndexDescriptor(Properties attributes) throws XDocletException { String name = attributes.getProperty(ATTRIBUTE_NAME); IndexDescriptorDef indexDef = _curClassDef.getIndexDescriptor(name); String attrName; if (indexDef == null) { indexDef = new IndexDescriptorDef(name); _curClassDef.addIndexDescriptor(indexDef); } if ((indexDef.getName() == null) || (indexDef.getName().length() == 0)) { throw new XDocletException(Translator.getString(XDocletModulesOjbMessages.class, XDocletModulesOjbMessages.INDEX_NAME_MISSING, new String[]{_curClassDef.getName()})); } attributes.remove(ATTRIBUTE_NAME); for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); indexDef.setProperty(attrName, attributes.getProperty(attrName)); } return ""; }
java
public String processIndexDescriptor(Properties attributes) throws XDocletException { String name = attributes.getProperty(ATTRIBUTE_NAME); IndexDescriptorDef indexDef = _curClassDef.getIndexDescriptor(name); String attrName; if (indexDef == null) { indexDef = new IndexDescriptorDef(name); _curClassDef.addIndexDescriptor(indexDef); } if ((indexDef.getName() == null) || (indexDef.getName().length() == 0)) { throw new XDocletException(Translator.getString(XDocletModulesOjbMessages.class, XDocletModulesOjbMessages.INDEX_NAME_MISSING, new String[]{_curClassDef.getName()})); } attributes.remove(ATTRIBUTE_NAME); for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); indexDef.setProperty(attrName, attributes.getProperty(attrName)); } return ""; }
[ "public", "String", "processIndexDescriptor", "(", "Properties", "attributes", ")", "throws", "XDocletException", "{", "String", "name", "=", "attributes", ".", "getProperty", "(", "ATTRIBUTE_NAME", ")", ";", "IndexDescriptorDef", "indexDef", "=", "_curClassDef", ".", "getIndexDescriptor", "(", "name", ")", ";", "String", "attrName", ";", "if", "(", "indexDef", "==", "null", ")", "{", "indexDef", "=", "new", "IndexDescriptorDef", "(", "name", ")", ";", "_curClassDef", ".", "addIndexDescriptor", "(", "indexDef", ")", ";", "}", "if", "(", "(", "indexDef", ".", "getName", "(", ")", "==", "null", ")", "||", "(", "indexDef", ".", "getName", "(", ")", ".", "length", "(", ")", "==", "0", ")", ")", "{", "throw", "new", "XDocletException", "(", "Translator", ".", "getString", "(", "XDocletModulesOjbMessages", ".", "class", ",", "XDocletModulesOjbMessages", ".", "INDEX_NAME_MISSING", ",", "new", "String", "[", "]", "{", "_curClassDef", ".", "getName", "(", ")", "}", ")", ")", ";", "}", "attributes", ".", "remove", "(", "ATTRIBUTE_NAME", ")", ";", "for", "(", "Enumeration", "attrNames", "=", "attributes", ".", "propertyNames", "(", ")", ";", "attrNames", ".", "hasMoreElements", "(", ")", ";", ")", "{", "attrName", "=", "(", "String", ")", "attrNames", ".", "nextElement", "(", ")", ";", "indexDef", ".", "setProperty", "(", "attrName", ",", "attributes", ".", "getProperty", "(", "attrName", ")", ")", ";", "}", "return", "\"\"", ";", "}" ]
Processes an index descriptor tag. @param template The template @param attributes The attributes of the tag @exception XDocletException If an error occurs @doc.tag type="content" @doc.param name="documentation" optional="true" description="Documentation on the index" @doc.param name="fields" optional="false" description="The fields making up the index separated by commas" @doc.param name="name" optional="false" description="The name of the index descriptor" @doc.param name="unique" optional="true" description="Whether the index descriptor is unique" values="true,false"
[ "Processes", "an", "index", "descriptor", "tag", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L384-L409
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.forAllIndexDescriptorDefinitions
public void forAllIndexDescriptorDefinitions(String template, Properties attributes) throws XDocletException { for (Iterator it = _curClassDef.getIndexDescriptors(); it.hasNext(); ) { _curIndexDescriptorDef = (IndexDescriptorDef)it.next(); generate(template); } _curIndexDescriptorDef = null; }
java
public void forAllIndexDescriptorDefinitions(String template, Properties attributes) throws XDocletException { for (Iterator it = _curClassDef.getIndexDescriptors(); it.hasNext(); ) { _curIndexDescriptorDef = (IndexDescriptorDef)it.next(); generate(template); } _curIndexDescriptorDef = null; }
[ "public", "void", "forAllIndexDescriptorDefinitions", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "for", "(", "Iterator", "it", "=", "_curClassDef", ".", "getIndexDescriptors", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "_curIndexDescriptorDef", "=", "(", "IndexDescriptorDef", ")", "it", ".", "next", "(", ")", ";", "generate", "(", "template", ")", ";", "}", "_curIndexDescriptorDef", "=", "null", ";", "}" ]
Processes the template for all index descriptors of the current class definition. @param template The template @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="block"
[ "Processes", "the", "template", "for", "all", "index", "descriptors", "of", "the", "current", "class", "definition", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L419-L427
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.forAllIndexDescriptorColumns
public void forAllIndexDescriptorColumns(String template, Properties attributes) throws XDocletException { String fields = _curIndexDescriptorDef.getProperty(PropertyHelper.OJB_PROPERTY_FIELDS); FieldDescriptorDef fieldDef; String name; for (CommaListIterator it = new CommaListIterator(fields); it.hasNext();) { name = it.getNext(); fieldDef = _curClassDef.getField(name); if (fieldDef == null) { throw new XDocletException(Translator.getString(XDocletModulesOjbMessages.class, XDocletModulesOjbMessages.INDEX_FIELD_MISSING, new String[]{name, _curIndexDescriptorDef.getName(), _curClassDef.getName()})); } _curIndexColumn = fieldDef.getProperty(PropertyHelper.OJB_PROPERTY_COLUMN); generate(template); } _curIndexColumn = null; }
java
public void forAllIndexDescriptorColumns(String template, Properties attributes) throws XDocletException { String fields = _curIndexDescriptorDef.getProperty(PropertyHelper.OJB_PROPERTY_FIELDS); FieldDescriptorDef fieldDef; String name; for (CommaListIterator it = new CommaListIterator(fields); it.hasNext();) { name = it.getNext(); fieldDef = _curClassDef.getField(name); if (fieldDef == null) { throw new XDocletException(Translator.getString(XDocletModulesOjbMessages.class, XDocletModulesOjbMessages.INDEX_FIELD_MISSING, new String[]{name, _curIndexDescriptorDef.getName(), _curClassDef.getName()})); } _curIndexColumn = fieldDef.getProperty(PropertyHelper.OJB_PROPERTY_COLUMN); generate(template); } _curIndexColumn = null; }
[ "public", "void", "forAllIndexDescriptorColumns", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "String", "fields", "=", "_curIndexDescriptorDef", ".", "getProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_FIELDS", ")", ";", "FieldDescriptorDef", "fieldDef", ";", "String", "name", ";", "for", "(", "CommaListIterator", "it", "=", "new", "CommaListIterator", "(", "fields", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "name", "=", "it", ".", "getNext", "(", ")", ";", "fieldDef", "=", "_curClassDef", ".", "getField", "(", "name", ")", ";", "if", "(", "fieldDef", "==", "null", ")", "{", "throw", "new", "XDocletException", "(", "Translator", ".", "getString", "(", "XDocletModulesOjbMessages", ".", "class", ",", "XDocletModulesOjbMessages", ".", "INDEX_FIELD_MISSING", ",", "new", "String", "[", "]", "{", "name", ",", "_curIndexDescriptorDef", ".", "getName", "(", ")", ",", "_curClassDef", ".", "getName", "(", ")", "}", ")", ")", ";", "}", "_curIndexColumn", "=", "fieldDef", ".", "getProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_COLUMN", ")", ";", "generate", "(", "template", ")", ";", "}", "_curIndexColumn", "=", "null", ";", "}" ]
Processes the template for all index columns for the current index descriptor. @param template The template @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="block"
[ "Processes", "the", "template", "for", "all", "index", "columns", "for", "the", "current", "index", "descriptor", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L437-L457
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.processObjectCache
public String processObjectCache(Properties attributes) throws XDocletException { ObjectCacheDef objCacheDef = _curClassDef.setObjectCache(attributes.getProperty(ATTRIBUTE_CLASS)); String attrName; attributes.remove(ATTRIBUTE_CLASS); for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); objCacheDef.setProperty(attrName, attributes.getProperty(attrName)); } return ""; }
java
public String processObjectCache(Properties attributes) throws XDocletException { ObjectCacheDef objCacheDef = _curClassDef.setObjectCache(attributes.getProperty(ATTRIBUTE_CLASS)); String attrName; attributes.remove(ATTRIBUTE_CLASS); for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); objCacheDef.setProperty(attrName, attributes.getProperty(attrName)); } return ""; }
[ "public", "String", "processObjectCache", "(", "Properties", "attributes", ")", "throws", "XDocletException", "{", "ObjectCacheDef", "objCacheDef", "=", "_curClassDef", ".", "setObjectCache", "(", "attributes", ".", "getProperty", "(", "ATTRIBUTE_CLASS", ")", ")", ";", "String", "attrName", ";", "attributes", ".", "remove", "(", "ATTRIBUTE_CLASS", ")", ";", "for", "(", "Enumeration", "attrNames", "=", "attributes", ".", "propertyNames", "(", ")", ";", "attrNames", ".", "hasMoreElements", "(", ")", ";", ")", "{", "attrName", "=", "(", "String", ")", "attrNames", ".", "nextElement", "(", ")", ";", "objCacheDef", ".", "setProperty", "(", "attrName", ",", "attributes", ".", "getProperty", "(", "attrName", ")", ")", ";", "}", "return", "\"\"", ";", "}" ]
Processes an object cache tag. @param template The template @param attributes The attributes of the tag @exception XDocletException If an error occurs @doc.tag type="content" @doc.param name="attributes" optional="true" description="Attributes of the object-cache as name-value pairs 'name=value', @doc.param name="class" optional="false" description="The object cache implementation" @doc.param name="documentation" optional="true" description="Documentation on the object cache"
[ "Processes", "an", "object", "cache", "tag", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L486-L498
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.forObjectCache
public void forObjectCache(String template, Properties attributes) throws XDocletException { _curObjectCacheDef = _curClassDef.getObjectCache(); if (_curObjectCacheDef != null) { generate(template); _curObjectCacheDef = null; } }
java
public void forObjectCache(String template, Properties attributes) throws XDocletException { _curObjectCacheDef = _curClassDef.getObjectCache(); if (_curObjectCacheDef != null) { generate(template); _curObjectCacheDef = null; } }
[ "public", "void", "forObjectCache", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "_curObjectCacheDef", "=", "_curClassDef", ".", "getObjectCache", "(", ")", ";", "if", "(", "_curObjectCacheDef", "!=", "null", ")", "{", "generate", "(", "template", ")", ";", "_curObjectCacheDef", "=", "null", ";", "}", "}" ]
Processes the template for the object cache of the current class definition. @param template The template @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="block"
[ "Processes", "the", "template", "for", "the", "object", "cache", "of", "the", "current", "class", "definition", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L508-L516
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.processProcedure
public String processProcedure(Properties attributes) throws XDocletException { String type = attributes.getProperty(ATTRIBUTE_TYPE); ProcedureDef procDef = _curClassDef.getProcedure(type); String attrName; if (procDef == null) { procDef = new ProcedureDef(type); _curClassDef.addProcedure(procDef); } for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); procDef.setProperty(attrName, attributes.getProperty(attrName)); } return ""; }
java
public String processProcedure(Properties attributes) throws XDocletException { String type = attributes.getProperty(ATTRIBUTE_TYPE); ProcedureDef procDef = _curClassDef.getProcedure(type); String attrName; if (procDef == null) { procDef = new ProcedureDef(type); _curClassDef.addProcedure(procDef); } for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); procDef.setProperty(attrName, attributes.getProperty(attrName)); } return ""; }
[ "public", "String", "processProcedure", "(", "Properties", "attributes", ")", "throws", "XDocletException", "{", "String", "type", "=", "attributes", ".", "getProperty", "(", "ATTRIBUTE_TYPE", ")", ";", "ProcedureDef", "procDef", "=", "_curClassDef", ".", "getProcedure", "(", "type", ")", ";", "String", "attrName", ";", "if", "(", "procDef", "==", "null", ")", "{", "procDef", "=", "new", "ProcedureDef", "(", "type", ")", ";", "_curClassDef", ".", "addProcedure", "(", "procDef", ")", ";", "}", "for", "(", "Enumeration", "attrNames", "=", "attributes", ".", "propertyNames", "(", ")", ";", "attrNames", ".", "hasMoreElements", "(", ")", ";", ")", "{", "attrName", "=", "(", "String", ")", "attrNames", ".", "nextElement", "(", ")", ";", "procDef", ".", "setProperty", "(", "attrName", ",", "attributes", ".", "getProperty", "(", "attrName", ")", ")", ";", "}", "return", "\"\"", ";", "}" ]
Processes a procedure tag. @param template The template @param attributes The attributes of the tag @exception XDocletException If an error occurs @doc.tag type="content" @doc.param name="arguments" optional="true" description="The arguments of the procedure as a comma-separated list of names of procedure attribute tags" @doc.param name="attributes" optional="true" description="Attributes of the procedure as name-value pairs 'name=value', separated by commas" @doc.param name="documentation" optional="true" description="Documentation on the procedure" @doc.param name="include-all-fields" optional="true" description="For insert/update: whether all fields of the current class shall be included (arguments is ignored then)" values="true,false" @doc.param name="include-pk-only" optional="true" description="For delete: whether all primary key fields shall be included (arguments is ignored then)" values="true,false" @doc.param name="name" optional="false" description="The name of the procedure" @doc.param name="return-field-ref" optional="true" description="Identifies the field that receives the return value" @doc.param name="type" optional="false" description="The type of the procedure" values="delete,insert,update"
[ "Processes", "a", "procedure", "tag", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L540-L558
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.forAllProcedures
public void forAllProcedures(String template, Properties attributes) throws XDocletException { for (Iterator it = _curClassDef.getProcedures(); it.hasNext(); ) { _curProcedureDef = (ProcedureDef)it.next(); generate(template); } _curProcedureDef = null; }
java
public void forAllProcedures(String template, Properties attributes) throws XDocletException { for (Iterator it = _curClassDef.getProcedures(); it.hasNext(); ) { _curProcedureDef = (ProcedureDef)it.next(); generate(template); } _curProcedureDef = null; }
[ "public", "void", "forAllProcedures", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "for", "(", "Iterator", "it", "=", "_curClassDef", ".", "getProcedures", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "_curProcedureDef", "=", "(", "ProcedureDef", ")", "it", ".", "next", "(", ")", ";", "generate", "(", "template", ")", ";", "}", "_curProcedureDef", "=", "null", ";", "}" ]
Processes the template for all procedures of the current class definition. @param template The template @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="block"
[ "Processes", "the", "template", "for", "all", "procedures", "of", "the", "current", "class", "definition", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L568-L576
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.processProcedureArgument
public String processProcedureArgument(Properties attributes) throws XDocletException { String id = attributes.getProperty(ATTRIBUTE_NAME); ProcedureArgumentDef argDef = _curClassDef.getProcedureArgument(id); String attrName; if (argDef == null) { argDef = new ProcedureArgumentDef(id); _curClassDef.addProcedureArgument(argDef); } attributes.remove(ATTRIBUTE_NAME); for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); argDef.setProperty(attrName, attributes.getProperty(attrName)); } return ""; }
java
public String processProcedureArgument(Properties attributes) throws XDocletException { String id = attributes.getProperty(ATTRIBUTE_NAME); ProcedureArgumentDef argDef = _curClassDef.getProcedureArgument(id); String attrName; if (argDef == null) { argDef = new ProcedureArgumentDef(id); _curClassDef.addProcedureArgument(argDef); } attributes.remove(ATTRIBUTE_NAME); for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); argDef.setProperty(attrName, attributes.getProperty(attrName)); } return ""; }
[ "public", "String", "processProcedureArgument", "(", "Properties", "attributes", ")", "throws", "XDocletException", "{", "String", "id", "=", "attributes", ".", "getProperty", "(", "ATTRIBUTE_NAME", ")", ";", "ProcedureArgumentDef", "argDef", "=", "_curClassDef", ".", "getProcedureArgument", "(", "id", ")", ";", "String", "attrName", ";", "if", "(", "argDef", "==", "null", ")", "{", "argDef", "=", "new", "ProcedureArgumentDef", "(", "id", ")", ";", "_curClassDef", ".", "addProcedureArgument", "(", "argDef", ")", ";", "}", "attributes", ".", "remove", "(", "ATTRIBUTE_NAME", ")", ";", "for", "(", "Enumeration", "attrNames", "=", "attributes", ".", "propertyNames", "(", ")", ";", "attrNames", ".", "hasMoreElements", "(", ")", ";", ")", "{", "attrName", "=", "(", "String", ")", "attrNames", ".", "nextElement", "(", ")", ";", "argDef", ".", "setProperty", "(", "attrName", ",", "attributes", ".", "getProperty", "(", "attrName", ")", ")", ";", "}", "return", "\"\"", ";", "}" ]
Processes a runtime procedure argument tag. @param template The template @param attributes The attributes of the tag @exception XDocletException If an error occurs @doc.tag type="content" @doc.param name="attributes" optional="true" description="Attributes of the procedure as name-value pairs 'name=value', separated by commas" @doc.param name="documentation" optional="true" description="Documentation on the procedure" @doc.param name="field-ref" optional="true" description="Identifies the field that provides the value if a runtime argument; if not set, then null is used" @doc.param name="name" optional="false" description="The identifier of the argument tag" @doc.param name="return" optional="true" description="Whether this is a return value (if a runtime argument)" values="true,false" @doc.param name="value" optional="false" description="The value if a constant argument"
[ "Processes", "a", "runtime", "procedure", "argument", "tag", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L595-L614
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.forAllProcedureArguments
public void forAllProcedureArguments(String template, Properties attributes) throws XDocletException { String argNameList = _curProcedureDef.getProperty(PropertyHelper.OJB_PROPERTY_ARGUMENTS); for (CommaListIterator it = new CommaListIterator(argNameList); it.hasNext();) { _curProcedureArgumentDef = _curClassDef.getProcedureArgument(it.getNext()); generate(template); } _curProcedureArgumentDef = null; }
java
public void forAllProcedureArguments(String template, Properties attributes) throws XDocletException { String argNameList = _curProcedureDef.getProperty(PropertyHelper.OJB_PROPERTY_ARGUMENTS); for (CommaListIterator it = new CommaListIterator(argNameList); it.hasNext();) { _curProcedureArgumentDef = _curClassDef.getProcedureArgument(it.getNext()); generate(template); } _curProcedureArgumentDef = null; }
[ "public", "void", "forAllProcedureArguments", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "String", "argNameList", "=", "_curProcedureDef", ".", "getProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_ARGUMENTS", ")", ";", "for", "(", "CommaListIterator", "it", "=", "new", "CommaListIterator", "(", "argNameList", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "_curProcedureArgumentDef", "=", "_curClassDef", ".", "getProcedureArgument", "(", "it", ".", "getNext", "(", ")", ")", ";", "generate", "(", "template", ")", ";", "}", "_curProcedureArgumentDef", "=", "null", ";", "}" ]
Processes the template for all procedure arguments of the current procedure. @param template The template @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="block"
[ "Processes", "the", "template", "for", "all", "procedure", "arguments", "of", "the", "current", "procedure", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L624-L634
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.processAnonymousField
public void processAnonymousField(Properties attributes) throws XDocletException { if (!attributes.containsKey(ATTRIBUTE_NAME)) { throw new XDocletException(Translator.getString(XDocletModulesOjbMessages.class, XDocletModulesOjbMessages.PARAMETER_IS_REQUIRED, new String[]{ATTRIBUTE_NAME})); } String name = attributes.getProperty(ATTRIBUTE_NAME); FieldDescriptorDef fieldDef = _curClassDef.getField(name); String attrName; if (fieldDef == null) { fieldDef = new FieldDescriptorDef(name); _curClassDef.addField(fieldDef); } fieldDef.setAnonymous(); LogHelper.debug(false, OjbTagsHandler.class, "processAnonymousField", " Processing anonymous field "+fieldDef.getName()); attributes.remove(ATTRIBUTE_NAME); for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); fieldDef.setProperty(attrName, attributes.getProperty(attrName)); } fieldDef.setProperty(PropertyHelper.OJB_PROPERTY_ACCESS, "anonymous"); }
java
public void processAnonymousField(Properties attributes) throws XDocletException { if (!attributes.containsKey(ATTRIBUTE_NAME)) { throw new XDocletException(Translator.getString(XDocletModulesOjbMessages.class, XDocletModulesOjbMessages.PARAMETER_IS_REQUIRED, new String[]{ATTRIBUTE_NAME})); } String name = attributes.getProperty(ATTRIBUTE_NAME); FieldDescriptorDef fieldDef = _curClassDef.getField(name); String attrName; if (fieldDef == null) { fieldDef = new FieldDescriptorDef(name); _curClassDef.addField(fieldDef); } fieldDef.setAnonymous(); LogHelper.debug(false, OjbTagsHandler.class, "processAnonymousField", " Processing anonymous field "+fieldDef.getName()); attributes.remove(ATTRIBUTE_NAME); for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); fieldDef.setProperty(attrName, attributes.getProperty(attrName)); } fieldDef.setProperty(PropertyHelper.OJB_PROPERTY_ACCESS, "anonymous"); }
[ "public", "void", "processAnonymousField", "(", "Properties", "attributes", ")", "throws", "XDocletException", "{", "if", "(", "!", "attributes", ".", "containsKey", "(", "ATTRIBUTE_NAME", ")", ")", "{", "throw", "new", "XDocletException", "(", "Translator", ".", "getString", "(", "XDocletModulesOjbMessages", ".", "class", ",", "XDocletModulesOjbMessages", ".", "PARAMETER_IS_REQUIRED", ",", "new", "String", "[", "]", "{", "ATTRIBUTE_NAME", "}", ")", ")", ";", "}", "String", "name", "=", "attributes", ".", "getProperty", "(", "ATTRIBUTE_NAME", ")", ";", "FieldDescriptorDef", "fieldDef", "=", "_curClassDef", ".", "getField", "(", "name", ")", ";", "String", "attrName", ";", "if", "(", "fieldDef", "==", "null", ")", "{", "fieldDef", "=", "new", "FieldDescriptorDef", "(", "name", ")", ";", "_curClassDef", ".", "addField", "(", "fieldDef", ")", ";", "}", "fieldDef", ".", "setAnonymous", "(", ")", ";", "LogHelper", ".", "debug", "(", "false", ",", "OjbTagsHandler", ".", "class", ",", "\"processAnonymousField\"", ",", "\" Processing anonymous field \"", "+", "fieldDef", ".", "getName", "(", ")", ")", ";", "attributes", ".", "remove", "(", "ATTRIBUTE_NAME", ")", ";", "for", "(", "Enumeration", "attrNames", "=", "attributes", ".", "propertyNames", "(", ")", ";", "attrNames", ".", "hasMoreElements", "(", ")", ";", ")", "{", "attrName", "=", "(", "String", ")", "attrNames", ".", "nextElement", "(", ")", ";", "fieldDef", ".", "setProperty", "(", "attrName", ",", "attributes", ".", "getProperty", "(", "attrName", ")", ")", ";", "}", "fieldDef", ".", "setProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_ACCESS", ",", "\"anonymous\"", ")", ";", "}" ]
Processes an anonymous field definition specified at the class level. @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="content" @doc.param name="attributes" optional="true" description="Attributes of the field as name-value pairs 'name=value', separated by commas" @doc.param name="autoincrement" optional="true" description="Whether the field is auto-incremented" values="true,false" @doc.param name="column" optional="true" description="The column for the field" @doc.param name="conversion" optional="true" description="The fully qualified name of the conversion for the field" @doc.param name="default-fetch" optional="true" description="The default-fetch setting" values="true,false" @doc.param name="documentation" optional="true" description="Documentation on the field" @doc.param name="id" optional="true" description="The position of the field in the class descriptor" @doc.param name="indexed" optional="true" description="Whether the field is indexed" values="true,false" @doc.param name="jdbc-type" optional="true" description="The jdbc type of the column" @doc.param name="length" optional="true" description="The length of the column" @doc.param name="locking" optional="true" description="Whether the field supports locking" values="true,false" @doc.param name="name" optional="false" description="The name of the field" @doc.param name="nullable" optional="true" description="Whether the field is nullable" values="true,false" @doc.param name="precision" optional="true" description="The precision of the column" @doc.param name="primarykey" optional="true" description="Whether the field is a primarykey" values="true,false" @doc.param name="scale" optional="true" description="The scale of the column" @doc.param name="sequence-name" optional="true" description="The name of the sequence for incrementing the field" @doc.param name="table" optional="true" description="The table of the field (not implemented yet)" @doc.param name="update-lock" optional="true" description="Can be set to false if the persistent attribute is used for optimistic locking AND the dbms should update the lock column itself (default is true). Can only be set for TIMESTAMP and INTEGER columns" values="true,false"
[ "Processes", "an", "anonymous", "field", "definition", "specified", "at", "the", "class", "level", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L677-L705
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.processField
public void processField(String template, Properties attributes) throws XDocletException { String name = OjbMemberTagsHandler.getMemberName(); String defaultType = getDefaultJdbcTypeForCurrentMember(); String defaultConversion = getDefaultJdbcConversionForCurrentMember(); FieldDescriptorDef fieldDef = _curClassDef.getField(name); String attrName; if (fieldDef == null) { fieldDef = new FieldDescriptorDef(name); _curClassDef.addField(fieldDef); } LogHelper.debug(false, OjbTagsHandler.class, "processField", " Processing field "+fieldDef.getName()); for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); fieldDef.setProperty(attrName, attributes.getProperty(attrName)); } // storing additional info for later use fieldDef.setProperty(PropertyHelper.OJB_PROPERTY_JAVA_TYPE, OjbMemberTagsHandler.getMemberType().getQualifiedName()); fieldDef.setProperty(PropertyHelper.OJB_PROPERTY_DEFAULT_JDBC_TYPE, defaultType); if (defaultConversion != null) { fieldDef.setProperty(PropertyHelper.OJB_PROPERTY_DEFAULT_CONVERSION, defaultConversion); } _curFieldDef = fieldDef; generate(template); _curFieldDef = null; }
java
public void processField(String template, Properties attributes) throws XDocletException { String name = OjbMemberTagsHandler.getMemberName(); String defaultType = getDefaultJdbcTypeForCurrentMember(); String defaultConversion = getDefaultJdbcConversionForCurrentMember(); FieldDescriptorDef fieldDef = _curClassDef.getField(name); String attrName; if (fieldDef == null) { fieldDef = new FieldDescriptorDef(name); _curClassDef.addField(fieldDef); } LogHelper.debug(false, OjbTagsHandler.class, "processField", " Processing field "+fieldDef.getName()); for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); fieldDef.setProperty(attrName, attributes.getProperty(attrName)); } // storing additional info for later use fieldDef.setProperty(PropertyHelper.OJB_PROPERTY_JAVA_TYPE, OjbMemberTagsHandler.getMemberType().getQualifiedName()); fieldDef.setProperty(PropertyHelper.OJB_PROPERTY_DEFAULT_JDBC_TYPE, defaultType); if (defaultConversion != null) { fieldDef.setProperty(PropertyHelper.OJB_PROPERTY_DEFAULT_CONVERSION, defaultConversion); } _curFieldDef = fieldDef; generate(template); _curFieldDef = null; }
[ "public", "void", "processField", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "String", "name", "=", "OjbMemberTagsHandler", ".", "getMemberName", "(", ")", ";", "String", "defaultType", "=", "getDefaultJdbcTypeForCurrentMember", "(", ")", ";", "String", "defaultConversion", "=", "getDefaultJdbcConversionForCurrentMember", "(", ")", ";", "FieldDescriptorDef", "fieldDef", "=", "_curClassDef", ".", "getField", "(", "name", ")", ";", "String", "attrName", ";", "if", "(", "fieldDef", "==", "null", ")", "{", "fieldDef", "=", "new", "FieldDescriptorDef", "(", "name", ")", ";", "_curClassDef", ".", "addField", "(", "fieldDef", ")", ";", "}", "LogHelper", ".", "debug", "(", "false", ",", "OjbTagsHandler", ".", "class", ",", "\"processField\"", ",", "\" Processing field \"", "+", "fieldDef", ".", "getName", "(", ")", ")", ";", "for", "(", "Enumeration", "attrNames", "=", "attributes", ".", "propertyNames", "(", ")", ";", "attrNames", ".", "hasMoreElements", "(", ")", ";", ")", "{", "attrName", "=", "(", "String", ")", "attrNames", ".", "nextElement", "(", ")", ";", "fieldDef", ".", "setProperty", "(", "attrName", ",", "attributes", ".", "getProperty", "(", "attrName", ")", ")", ";", "}", "// storing additional info for later use\r", "fieldDef", ".", "setProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_JAVA_TYPE", ",", "OjbMemberTagsHandler", ".", "getMemberType", "(", ")", ".", "getQualifiedName", "(", ")", ")", ";", "fieldDef", ".", "setProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_DEFAULT_JDBC_TYPE", ",", "defaultType", ")", ";", "if", "(", "defaultConversion", "!=", "null", ")", "{", "fieldDef", ".", "setProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_DEFAULT_CONVERSION", ",", "defaultConversion", ")", ";", "}", "_curFieldDef", "=", "fieldDef", ";", "generate", "(", "template", ")", ";", "_curFieldDef", "=", "null", ";", "}" ]
Sets the current field definition derived from the current member, and optionally some attributes. @param template The template @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="block" @doc.param name="access" optional="true" description="The accessibility of the column" values="readonly,readwrite" @doc.param name="attributes" optional="true" description="Attributes of the field as name-value pairs 'name=value', separated by commas" @doc.param name="autoincrement" optional="true" description="Whether the field is auto-incremented" values="none,ojb,database" @doc.param name="column" optional="true" description="The column for the field" @doc.param name="column-documentation" optional="true" description="Documentation on the column" @doc.param name="conversion" optional="true" description="The fully qualified name of the conversion for the field" @doc.param name="default-fetch" optional="true" description="The default-fetch setting" values="true,false" @doc.param name="documentation" optional="true" description="Documentation on the field" @doc.param name="id" optional="true" description="The position of the field in the class descriptor" @doc.param name="indexed" optional="true" description="Whether the field is indexed" values="true,false" @doc.param name="jdbc-type" optional="true" description="The jdbc type of the column" @doc.param name="length" optional="true" description="The length of the column" @doc.param name="locking" optional="true" description="Whether the field supports locking" values="true,false" @doc.param name="nullable" optional="true" description="Whether the field is nullable" values="true,false" @doc.param name="precision" optional="true" description="The precision of the column" @doc.param name="primarykey" optional="true" description="Whether the field is a primarykey" values="true,false" @doc.param name="scale" optional="true" description="The scale of the column" @doc.param name="sequence-name" optional="true" description="The name of the sequence for incrementing the field" @doc.param name="table" optional="true" description="The table of the field (not implemented yet)" @doc.param name="update-lock" optional="true" description="Can be set to false if the persistent attribute is used for optimistic locking AND the dbms should update the lock column itself (default is true). Can only be set for TIMESTAMP and INTEGER columns" values="true,false"
[ "Sets", "the", "current", "field", "definition", "derived", "from", "the", "current", "member", "and", "optionally", "some", "attributes", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L748-L780
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.processAnonymousReference
public void processAnonymousReference(Properties attributes) throws XDocletException { ReferenceDescriptorDef refDef = _curClassDef.getReference("super"); String attrName; if (refDef == null) { refDef = new ReferenceDescriptorDef("super"); _curClassDef.addReference(refDef); } refDef.setAnonymous(); LogHelper.debug(false, OjbTagsHandler.class, "processAnonymousReference", " Processing anonymous reference"); for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); refDef.setProperty(attrName, attributes.getProperty(attrName)); } }
java
public void processAnonymousReference(Properties attributes) throws XDocletException { ReferenceDescriptorDef refDef = _curClassDef.getReference("super"); String attrName; if (refDef == null) { refDef = new ReferenceDescriptorDef("super"); _curClassDef.addReference(refDef); } refDef.setAnonymous(); LogHelper.debug(false, OjbTagsHandler.class, "processAnonymousReference", " Processing anonymous reference"); for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); refDef.setProperty(attrName, attributes.getProperty(attrName)); } }
[ "public", "void", "processAnonymousReference", "(", "Properties", "attributes", ")", "throws", "XDocletException", "{", "ReferenceDescriptorDef", "refDef", "=", "_curClassDef", ".", "getReference", "(", "\"super\"", ")", ";", "String", "attrName", ";", "if", "(", "refDef", "==", "null", ")", "{", "refDef", "=", "new", "ReferenceDescriptorDef", "(", "\"super\"", ")", ";", "_curClassDef", ".", "addReference", "(", "refDef", ")", ";", "}", "refDef", ".", "setAnonymous", "(", ")", ";", "LogHelper", ".", "debug", "(", "false", ",", "OjbTagsHandler", ".", "class", ",", "\"processAnonymousReference\"", ",", "\" Processing anonymous reference\"", ")", ";", "for", "(", "Enumeration", "attrNames", "=", "attributes", ".", "propertyNames", "(", ")", ";", "attrNames", ".", "hasMoreElements", "(", ")", ";", ")", "{", "attrName", "=", "(", "String", ")", "attrNames", ".", "nextElement", "(", ")", ";", "refDef", ".", "setProperty", "(", "attrName", ",", "attributes", ".", "getProperty", "(", "attrName", ")", ")", ";", "}", "}" ]
Processes an anonymous reference definition. @param attributes The attributes of the tag @exception XDocletException If an error occurs @doc.tag type="content" @doc.param name="attributes" optional="true" description="Attributes of the reference as name-value pairs 'name=value', separated by commas" @doc.param name="auto-delete" optional="true" description="Whether to automatically delete the referenced object on object deletion" @doc.param name="auto-retrieve" optional="true" description="Whether to automatically retrieve the referenced object" @doc.param name="auto-update" optional="true" description="Whether to automatically update the referenced object" @doc.param name="class-ref" optional="false" description="The fully qualified name of the class owning the referenced field" @doc.param name="documentation" optional="true" description="Documentation on the reference" @doc.param name="foreignkey" optional="true" description="The fields in the current type used for implementing the reference" @doc.param name="otm-dependent" optional="true" description="Whether the reference is dependent on otm" @doc.param name="proxy" optional="true" description="Whether to use a proxy for the reference" @doc.param name="proxy-prefetching-limit" optional="true" description="Specifies the amount of objects to prefetch" @doc.param name="refresh" optional="true" description="Whether to automatically refresh the reference" @doc.param name="remote-foreignkey" optional="true" description="The fields in the referenced type corresponding to the local fields (is only used for the table definition)"
[ "Processes", "an", "anonymous", "reference", "definition", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L847-L865
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.processReference
public void processReference(String template, Properties attributes) throws XDocletException { String name = OjbMemberTagsHandler.getMemberName(); XClass type = OjbMemberTagsHandler.getMemberType(); int dim = OjbMemberTagsHandler.getMemberDimension(); ReferenceDescriptorDef refDef = _curClassDef.getReference(name); String attrName; if (refDef == null) { refDef = new ReferenceDescriptorDef(name); _curClassDef.addReference(refDef); } LogHelper.debug(false, OjbTagsHandler.class, "processReference", " Processing reference "+refDef.getName()); for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); refDef.setProperty(attrName, attributes.getProperty(attrName)); } // storing default info for later use if (type == null) { throw new XDocletException(Translator.getString(XDocletModulesOjbMessages.class, XDocletModulesOjbMessages.COULD_NOT_DETERMINE_TYPE_OF_MEMBER, new String[]{name})); } if (dim > 0) { throw new XDocletException(Translator.getString(XDocletModulesOjbMessages.class, XDocletModulesOjbMessages.MEMBER_CANNOT_BE_A_REFERENCE, new String[]{name, _curClassDef.getName()})); } refDef.setProperty(PropertyHelper.OJB_PROPERTY_VARIABLE_TYPE, type.getQualifiedName()); // searching for default type String typeName = searchForPersistentSubType(type); if (typeName != null) { refDef.setProperty(PropertyHelper.OJB_PROPERTY_DEFAULT_CLASS_REF, typeName); } _curReferenceDef = refDef; generate(template); _curReferenceDef = null; }
java
public void processReference(String template, Properties attributes) throws XDocletException { String name = OjbMemberTagsHandler.getMemberName(); XClass type = OjbMemberTagsHandler.getMemberType(); int dim = OjbMemberTagsHandler.getMemberDimension(); ReferenceDescriptorDef refDef = _curClassDef.getReference(name); String attrName; if (refDef == null) { refDef = new ReferenceDescriptorDef(name); _curClassDef.addReference(refDef); } LogHelper.debug(false, OjbTagsHandler.class, "processReference", " Processing reference "+refDef.getName()); for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); refDef.setProperty(attrName, attributes.getProperty(attrName)); } // storing default info for later use if (type == null) { throw new XDocletException(Translator.getString(XDocletModulesOjbMessages.class, XDocletModulesOjbMessages.COULD_NOT_DETERMINE_TYPE_OF_MEMBER, new String[]{name})); } if (dim > 0) { throw new XDocletException(Translator.getString(XDocletModulesOjbMessages.class, XDocletModulesOjbMessages.MEMBER_CANNOT_BE_A_REFERENCE, new String[]{name, _curClassDef.getName()})); } refDef.setProperty(PropertyHelper.OJB_PROPERTY_VARIABLE_TYPE, type.getQualifiedName()); // searching for default type String typeName = searchForPersistentSubType(type); if (typeName != null) { refDef.setProperty(PropertyHelper.OJB_PROPERTY_DEFAULT_CLASS_REF, typeName); } _curReferenceDef = refDef; generate(template); _curReferenceDef = null; }
[ "public", "void", "processReference", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "String", "name", "=", "OjbMemberTagsHandler", ".", "getMemberName", "(", ")", ";", "XClass", "type", "=", "OjbMemberTagsHandler", ".", "getMemberType", "(", ")", ";", "int", "dim", "=", "OjbMemberTagsHandler", ".", "getMemberDimension", "(", ")", ";", "ReferenceDescriptorDef", "refDef", "=", "_curClassDef", ".", "getReference", "(", "name", ")", ";", "String", "attrName", ";", "if", "(", "refDef", "==", "null", ")", "{", "refDef", "=", "new", "ReferenceDescriptorDef", "(", "name", ")", ";", "_curClassDef", ".", "addReference", "(", "refDef", ")", ";", "}", "LogHelper", ".", "debug", "(", "false", ",", "OjbTagsHandler", ".", "class", ",", "\"processReference\"", ",", "\" Processing reference \"", "+", "refDef", ".", "getName", "(", ")", ")", ";", "for", "(", "Enumeration", "attrNames", "=", "attributes", ".", "propertyNames", "(", ")", ";", "attrNames", ".", "hasMoreElements", "(", ")", ";", ")", "{", "attrName", "=", "(", "String", ")", "attrNames", ".", "nextElement", "(", ")", ";", "refDef", ".", "setProperty", "(", "attrName", ",", "attributes", ".", "getProperty", "(", "attrName", ")", ")", ";", "}", "// storing default info for later use\r", "if", "(", "type", "==", "null", ")", "{", "throw", "new", "XDocletException", "(", "Translator", ".", "getString", "(", "XDocletModulesOjbMessages", ".", "class", ",", "XDocletModulesOjbMessages", ".", "COULD_NOT_DETERMINE_TYPE_OF_MEMBER", ",", "new", "String", "[", "]", "{", "name", "}", ")", ")", ";", "}", "if", "(", "dim", ">", "0", ")", "{", "throw", "new", "XDocletException", "(", "Translator", ".", "getString", "(", "XDocletModulesOjbMessages", ".", "class", ",", "XDocletModulesOjbMessages", ".", "MEMBER_CANNOT_BE_A_REFERENCE", ",", "new", "String", "[", "]", "{", "name", ",", "_curClassDef", ".", "getName", "(", ")", "}", ")", ")", ";", "}", "refDef", ".", "setProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_VARIABLE_TYPE", ",", "type", ".", "getQualifiedName", "(", ")", ")", ";", "// searching for default type\r", "String", "typeName", "=", "searchForPersistentSubType", "(", "type", ")", ";", "if", "(", "typeName", "!=", "null", ")", "{", "refDef", ".", "setProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_DEFAULT_CLASS_REF", ",", "typeName", ")", ";", "}", "_curReferenceDef", "=", "refDef", ";", "generate", "(", "template", ")", ";", "_curReferenceDef", "=", "null", ";", "}" ]
Sets the current reference definition derived from the current member, and optionally some attributes. @param template The template @param attributes The attributes of the tag @exception XDocletException If an error occurs @doc.tag type="block" @doc.param name="attributes" optional="true" description="Attributes of the reference as name-value pairs 'name=value', separated by commas" @doc.param name="auto-delete" optional="true" description="Whether to automatically delete the referenced object on object deletion" @doc.param name="auto-retrieve" optional="true" description="Whether to automatically retrieve the referenced object" @doc.param name="auto-update" optional="true" description="Whether to automatically update the referenced object" @doc.param name="class-ref" optional="true" description="The fully qualified name of the class owning the referenced field" @doc.param name="database-foreignkey" optional="true" description="Whether a database foreignkey shall be created" values="true,false" @doc.param name="documentation" optional="true" description="Documentation on the reference" @doc.param name="foreignkey" optional="true" description="The fields in the current type used for implementing the reference" @doc.param name="otm-dependent" optional="true" description="Whether the reference is dependent on otm" @doc.param name="proxy" optional="true" description="Whether to use a proxy for the reference" @doc.param name="proxy-prefetching-limit" optional="true" description="Specifies the amount of objects to prefetch" @doc.param name="refresh" optional="true" description="Whether to automatically refresh the reference" @doc.param name="remote-foreignkey" optional="true" description="The fields in the referenced type corresponding to the local fields (is only used for the table definition)"
[ "Sets", "the", "current", "reference", "definition", "derived", "from", "the", "current", "member", "and", "optionally", "some", "attributes", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L897-L944
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.forAllReferenceDefinitions
public void forAllReferenceDefinitions(String template, Properties attributes) throws XDocletException { for (Iterator it = _curClassDef.getReferences(); it.hasNext(); ) { _curReferenceDef = (ReferenceDescriptorDef)it.next(); // first we check whether it is an inherited anonymous reference if (_curReferenceDef.isAnonymous() && (_curReferenceDef.getOwner() != _curClassDef)) { continue; } if (!isFeatureIgnored(LEVEL_REFERENCE) && !_curReferenceDef.getBooleanProperty(PropertyHelper.OJB_PROPERTY_IGNORE, false)) { generate(template); } } _curReferenceDef = null; }
java
public void forAllReferenceDefinitions(String template, Properties attributes) throws XDocletException { for (Iterator it = _curClassDef.getReferences(); it.hasNext(); ) { _curReferenceDef = (ReferenceDescriptorDef)it.next(); // first we check whether it is an inherited anonymous reference if (_curReferenceDef.isAnonymous() && (_curReferenceDef.getOwner() != _curClassDef)) { continue; } if (!isFeatureIgnored(LEVEL_REFERENCE) && !_curReferenceDef.getBooleanProperty(PropertyHelper.OJB_PROPERTY_IGNORE, false)) { generate(template); } } _curReferenceDef = null; }
[ "public", "void", "forAllReferenceDefinitions", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "for", "(", "Iterator", "it", "=", "_curClassDef", ".", "getReferences", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "_curReferenceDef", "=", "(", "ReferenceDescriptorDef", ")", "it", ".", "next", "(", ")", ";", "// first we check whether it is an inherited anonymous reference\r", "if", "(", "_curReferenceDef", ".", "isAnonymous", "(", ")", "&&", "(", "_curReferenceDef", ".", "getOwner", "(", ")", "!=", "_curClassDef", ")", ")", "{", "continue", ";", "}", "if", "(", "!", "isFeatureIgnored", "(", "LEVEL_REFERENCE", ")", "&&", "!", "_curReferenceDef", ".", "getBooleanProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_IGNORE", ",", "false", ")", ")", "{", "generate", "(", "template", ")", ";", "}", "}", "_curReferenceDef", "=", "null", ";", "}" ]
Processes the template for all reference definitions of the current class definition. @param template The template @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="block"
[ "Processes", "the", "template", "for", "all", "reference", "definitions", "of", "the", "current", "class", "definition", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L954-L971
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.processCollection
public void processCollection(String template, Properties attributes) throws XDocletException { String name = OjbMemberTagsHandler.getMemberName(); CollectionDescriptorDef collDef = _curClassDef.getCollection(name); String attrName; if (collDef == null) { collDef = new CollectionDescriptorDef(name); _curClassDef.addCollection(collDef); } LogHelper.debug(false, OjbTagsHandler.class, "processCollection", " Processing collection "+collDef.getName()); for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); collDef.setProperty(attrName, attributes.getProperty(attrName)); } if (OjbMemberTagsHandler.getMemberDimension() > 0) { // we store the array-element type for later use collDef.setProperty(PropertyHelper.OJB_PROPERTY_ARRAY_ELEMENT_CLASS_REF, OjbMemberTagsHandler.getMemberType().getQualifiedName()); } else { collDef.setProperty(PropertyHelper.OJB_PROPERTY_VARIABLE_TYPE, OjbMemberTagsHandler.getMemberType().getQualifiedName()); } _curCollectionDef = collDef; generate(template); _curCollectionDef = null; }
java
public void processCollection(String template, Properties attributes) throws XDocletException { String name = OjbMemberTagsHandler.getMemberName(); CollectionDescriptorDef collDef = _curClassDef.getCollection(name); String attrName; if (collDef == null) { collDef = new CollectionDescriptorDef(name); _curClassDef.addCollection(collDef); } LogHelper.debug(false, OjbTagsHandler.class, "processCollection", " Processing collection "+collDef.getName()); for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); collDef.setProperty(attrName, attributes.getProperty(attrName)); } if (OjbMemberTagsHandler.getMemberDimension() > 0) { // we store the array-element type for later use collDef.setProperty(PropertyHelper.OJB_PROPERTY_ARRAY_ELEMENT_CLASS_REF, OjbMemberTagsHandler.getMemberType().getQualifiedName()); } else { collDef.setProperty(PropertyHelper.OJB_PROPERTY_VARIABLE_TYPE, OjbMemberTagsHandler.getMemberType().getQualifiedName()); } _curCollectionDef = collDef; generate(template); _curCollectionDef = null; }
[ "public", "void", "processCollection", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "String", "name", "=", "OjbMemberTagsHandler", ".", "getMemberName", "(", ")", ";", "CollectionDescriptorDef", "collDef", "=", "_curClassDef", ".", "getCollection", "(", "name", ")", ";", "String", "attrName", ";", "if", "(", "collDef", "==", "null", ")", "{", "collDef", "=", "new", "CollectionDescriptorDef", "(", "name", ")", ";", "_curClassDef", ".", "addCollection", "(", "collDef", ")", ";", "}", "LogHelper", ".", "debug", "(", "false", ",", "OjbTagsHandler", ".", "class", ",", "\"processCollection\"", ",", "\" Processing collection \"", "+", "collDef", ".", "getName", "(", ")", ")", ";", "for", "(", "Enumeration", "attrNames", "=", "attributes", ".", "propertyNames", "(", ")", ";", "attrNames", ".", "hasMoreElements", "(", ")", ";", ")", "{", "attrName", "=", "(", "String", ")", "attrNames", ".", "nextElement", "(", ")", ";", "collDef", ".", "setProperty", "(", "attrName", ",", "attributes", ".", "getProperty", "(", "attrName", ")", ")", ";", "}", "if", "(", "OjbMemberTagsHandler", ".", "getMemberDimension", "(", ")", ">", "0", ")", "{", "// we store the array-element type for later use\r", "collDef", ".", "setProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_ARRAY_ELEMENT_CLASS_REF", ",", "OjbMemberTagsHandler", ".", "getMemberType", "(", ")", ".", "getQualifiedName", "(", ")", ")", ";", "}", "else", "{", "collDef", ".", "setProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_VARIABLE_TYPE", ",", "OjbMemberTagsHandler", ".", "getMemberType", "(", ")", ".", "getQualifiedName", "(", ")", ")", ";", "}", "_curCollectionDef", "=", "collDef", ";", "generate", "(", "template", ")", ";", "_curCollectionDef", "=", "null", ";", "}" ]
Sets the current collection definition derived from the current member, and optionally some attributes. @param template The template @param attributes The attributes of the tag @exception XDocletException If an error occurs @doc.tag type="block" @doc.param name="attributes" optional="true" description="Attributes of the collection as name-value pairs 'name=value', separated by commas" @doc.param name="auto-delete" optional="true" description="Whether to automatically delete the collection on object deletion" @doc.param name="auto-retrieve" optional="true" description="Whether to automatically retrieve the collection" @doc.param name="auto-update" optional="true" description="Whether to automatically update the collection" @doc.param name="collection-class" optional="true" description="The type of the collection if not a java.util type or an array" @doc.param name="database-foreignkey" optional="true" description="Whether a database foreignkey shall be created" values="true,false" @doc.param name="documentation" optional="true" description="Documentation on the collection" @doc.param name="element-class-ref" optional="true" description="The fully qualified name of the element type" @doc.param name="foreignkey" optional="true" description="The name of the foreign keys (columns when an indirection table is given)" @doc.param name="foreignkey-documentation" optional="true" description="Documentation on the foreign keys as a comma-separated list if using an indirection table" @doc.param name="indirection-table" optional="true" description="The name of the indirection table for m:n associations" @doc.param name="indirection-table-documentation" optional="true" description="Documentation on the indirection table" @doc.param name="indirection-table-primarykeys" optional="true" description="Whether the fields referencing the collection and element classes, should also be primarykeys" @doc.param name="otm-dependent" optional="true" description="Whether the collection is dependent on otm" @doc.param name="proxy" optional="true" description="Whether to use a proxy for the collection" @doc.param name="proxy-prefetching-limit" optional="true" description="Specifies the amount of objects to prefetch" @doc.param name="query-customizer" optional="true" description="The query customizer for this collection" @doc.param name="query-customizer-attributes" optional="true" description="Attributes for the query customizer" @doc.param name="refresh" optional="true" description="Whether to automatically refresh the collection" @doc.param name="remote-foreignkey" optional="true" description="The name of the foreign key columns pointing to the elements if using an indirection table" @doc.param name="remote-foreignkey-documentation" optional="true" description="Documentation on the remote foreign keys as a comma-separated list if using an indirection table"
[ "Sets", "the", "current", "collection", "definition", "derived", "from", "the", "current", "member", "and", "optionally", "some", "attributes", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1019-L1052
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.forAllCollectionDefinitions
public void forAllCollectionDefinitions(String template, Properties attributes) throws XDocletException { for (Iterator it = _curClassDef.getCollections(); it.hasNext(); ) { _curCollectionDef = (CollectionDescriptorDef)it.next(); if (!isFeatureIgnored(LEVEL_COLLECTION) && !_curCollectionDef.getBooleanProperty(PropertyHelper.OJB_PROPERTY_IGNORE, false)) { generate(template); } } _curCollectionDef = null; }
java
public void forAllCollectionDefinitions(String template, Properties attributes) throws XDocletException { for (Iterator it = _curClassDef.getCollections(); it.hasNext(); ) { _curCollectionDef = (CollectionDescriptorDef)it.next(); if (!isFeatureIgnored(LEVEL_COLLECTION) && !_curCollectionDef.getBooleanProperty(PropertyHelper.OJB_PROPERTY_IGNORE, false)) { generate(template); } } _curCollectionDef = null; }
[ "public", "void", "forAllCollectionDefinitions", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "for", "(", "Iterator", "it", "=", "_curClassDef", ".", "getCollections", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "_curCollectionDef", "=", "(", "CollectionDescriptorDef", ")", "it", ".", "next", "(", ")", ";", "if", "(", "!", "isFeatureIgnored", "(", "LEVEL_COLLECTION", ")", "&&", "!", "_curCollectionDef", ".", "getBooleanProperty", "(", "PropertyHelper", ".", "OJB_PROPERTY_IGNORE", ",", "false", ")", ")", "{", "generate", "(", "template", ")", ";", "}", "}", "_curCollectionDef", "=", "null", ";", "}" ]
Processes the template for all collection definitions of the current class definition. @param template The template @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="block"
[ "Processes", "the", "template", "for", "all", "collection", "definitions", "of", "the", "current", "class", "definition", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1062-L1074
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.processNested
public String processNested(Properties attributes) throws XDocletException { String name = OjbMemberTagsHandler.getMemberName(); XClass type = OjbMemberTagsHandler.getMemberType(); int dim = OjbMemberTagsHandler.getMemberDimension(); NestedDef nestedDef = _curClassDef.getNested(name); if (type == null) { throw new XDocletException(Translator.getString(XDocletModulesOjbMessages.class, XDocletModulesOjbMessages.COULD_NOT_DETERMINE_TYPE_OF_MEMBER, new String[]{name})); } if (dim > 0) { throw new XDocletException(Translator.getString(XDocletModulesOjbMessages.class, XDocletModulesOjbMessages.MEMBER_CANNOT_BE_NESTED, new String[]{name, _curClassDef.getName()})); } ClassDescriptorDef nestedTypeDef = _model.getClass(type.getQualifiedName()); if (nestedTypeDef == null) { throw new XDocletException(Translator.getString(XDocletModulesOjbMessages.class, XDocletModulesOjbMessages.COULD_NOT_DETERMINE_TYPE_OF_MEMBER, new String[]{name})); } if (nestedDef == null) { nestedDef = new NestedDef(name, nestedTypeDef); _curClassDef.addNested(nestedDef); } LogHelper.debug(false, OjbTagsHandler.class, "processNested", " Processing nested object "+nestedDef.getName()+" of type "+nestedTypeDef.getName()); String attrName; for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); nestedDef.setProperty(attrName, attributes.getProperty(attrName)); } return ""; }
java
public String processNested(Properties attributes) throws XDocletException { String name = OjbMemberTagsHandler.getMemberName(); XClass type = OjbMemberTagsHandler.getMemberType(); int dim = OjbMemberTagsHandler.getMemberDimension(); NestedDef nestedDef = _curClassDef.getNested(name); if (type == null) { throw new XDocletException(Translator.getString(XDocletModulesOjbMessages.class, XDocletModulesOjbMessages.COULD_NOT_DETERMINE_TYPE_OF_MEMBER, new String[]{name})); } if (dim > 0) { throw new XDocletException(Translator.getString(XDocletModulesOjbMessages.class, XDocletModulesOjbMessages.MEMBER_CANNOT_BE_NESTED, new String[]{name, _curClassDef.getName()})); } ClassDescriptorDef nestedTypeDef = _model.getClass(type.getQualifiedName()); if (nestedTypeDef == null) { throw new XDocletException(Translator.getString(XDocletModulesOjbMessages.class, XDocletModulesOjbMessages.COULD_NOT_DETERMINE_TYPE_OF_MEMBER, new String[]{name})); } if (nestedDef == null) { nestedDef = new NestedDef(name, nestedTypeDef); _curClassDef.addNested(nestedDef); } LogHelper.debug(false, OjbTagsHandler.class, "processNested", " Processing nested object "+nestedDef.getName()+" of type "+nestedTypeDef.getName()); String attrName; for (Enumeration attrNames = attributes.propertyNames(); attrNames.hasMoreElements(); ) { attrName = (String)attrNames.nextElement(); nestedDef.setProperty(attrName, attributes.getProperty(attrName)); } return ""; }
[ "public", "String", "processNested", "(", "Properties", "attributes", ")", "throws", "XDocletException", "{", "String", "name", "=", "OjbMemberTagsHandler", ".", "getMemberName", "(", ")", ";", "XClass", "type", "=", "OjbMemberTagsHandler", ".", "getMemberType", "(", ")", ";", "int", "dim", "=", "OjbMemberTagsHandler", ".", "getMemberDimension", "(", ")", ";", "NestedDef", "nestedDef", "=", "_curClassDef", ".", "getNested", "(", "name", ")", ";", "if", "(", "type", "==", "null", ")", "{", "throw", "new", "XDocletException", "(", "Translator", ".", "getString", "(", "XDocletModulesOjbMessages", ".", "class", ",", "XDocletModulesOjbMessages", ".", "COULD_NOT_DETERMINE_TYPE_OF_MEMBER", ",", "new", "String", "[", "]", "{", "name", "}", ")", ")", ";", "}", "if", "(", "dim", ">", "0", ")", "{", "throw", "new", "XDocletException", "(", "Translator", ".", "getString", "(", "XDocletModulesOjbMessages", ".", "class", ",", "XDocletModulesOjbMessages", ".", "MEMBER_CANNOT_BE_NESTED", ",", "new", "String", "[", "]", "{", "name", ",", "_curClassDef", ".", "getName", "(", ")", "}", ")", ")", ";", "}", "ClassDescriptorDef", "nestedTypeDef", "=", "_model", ".", "getClass", "(", "type", ".", "getQualifiedName", "(", ")", ")", ";", "if", "(", "nestedTypeDef", "==", "null", ")", "{", "throw", "new", "XDocletException", "(", "Translator", ".", "getString", "(", "XDocletModulesOjbMessages", ".", "class", ",", "XDocletModulesOjbMessages", ".", "COULD_NOT_DETERMINE_TYPE_OF_MEMBER", ",", "new", "String", "[", "]", "{", "name", "}", ")", ")", ";", "}", "if", "(", "nestedDef", "==", "null", ")", "{", "nestedDef", "=", "new", "NestedDef", "(", "name", ",", "nestedTypeDef", ")", ";", "_curClassDef", ".", "addNested", "(", "nestedDef", ")", ";", "}", "LogHelper", ".", "debug", "(", "false", ",", "OjbTagsHandler", ".", "class", ",", "\"processNested\"", ",", "\" Processing nested object \"", "+", "nestedDef", ".", "getName", "(", ")", "+", "\" of type \"", "+", "nestedTypeDef", ".", "getName", "(", ")", ")", ";", "String", "attrName", ";", "for", "(", "Enumeration", "attrNames", "=", "attributes", ".", "propertyNames", "(", ")", ";", "attrNames", ".", "hasMoreElements", "(", ")", ";", ")", "{", "attrName", "=", "(", "String", ")", "attrNames", ".", "nextElement", "(", ")", ";", "nestedDef", ".", "setProperty", "(", "attrName", ",", "attributes", ".", "getProperty", "(", "attrName", ")", ")", ";", "}", "return", "\"\"", ";", "}" ]
Addes the current member as a nested object. @param template The template @param attributes The attributes of the tag @exception XDocletException If an error occurs @doc.tag type="content"
[ "Addes", "the", "current", "member", "as", "a", "nested", "object", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1084-L1127
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.createTorqueSchema
public String createTorqueSchema(Properties attributes) throws XDocletException { String dbName = (String)getDocletContext().getConfigParam(CONFIG_PARAM_DATABASENAME); _torqueModel = new TorqueModelDef(dbName, _model); return ""; }
java
public String createTorqueSchema(Properties attributes) throws XDocletException { String dbName = (String)getDocletContext().getConfigParam(CONFIG_PARAM_DATABASENAME); _torqueModel = new TorqueModelDef(dbName, _model); return ""; }
[ "public", "String", "createTorqueSchema", "(", "Properties", "attributes", ")", "throws", "XDocletException", "{", "String", "dbName", "=", "(", "String", ")", "getDocletContext", "(", ")", ".", "getConfigParam", "(", "CONFIG_PARAM_DATABASENAME", ")", ";", "_torqueModel", "=", "new", "TorqueModelDef", "(", "dbName", ",", "_model", ")", ";", "return", "\"\"", ";", "}" ]
Generates a torque schema for the model. @param attributes The attributes of the tag @return The property value @exception XDocletException If an error occurs @doc.tag type="content"
[ "Generates", "a", "torque", "schema", "for", "the", "model", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1310-L1316
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.forAllTables
public void forAllTables(String template, Properties attributes) throws XDocletException { for (Iterator it = _torqueModel.getTables(); it.hasNext(); ) { _curTableDef = (TableDef)it.next(); generate(template); } _curTableDef = null; }
java
public void forAllTables(String template, Properties attributes) throws XDocletException { for (Iterator it = _torqueModel.getTables(); it.hasNext(); ) { _curTableDef = (TableDef)it.next(); generate(template); } _curTableDef = null; }
[ "public", "void", "forAllTables", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "for", "(", "Iterator", "it", "=", "_torqueModel", ".", "getTables", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "_curTableDef", "=", "(", "TableDef", ")", "it", ".", "next", "(", ")", ";", "generate", "(", "template", ")", ";", "}", "_curTableDef", "=", "null", ";", "}" ]
Processes the template for all table definitions in the torque model. @param template The template @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="block"
[ "Processes", "the", "template", "for", "all", "table", "definitions", "in", "the", "torque", "model", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1326-L1334
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.forAllColumns
public void forAllColumns(String template, Properties attributes) throws XDocletException { for (Iterator it = _curTableDef.getColumns(); it.hasNext(); ) { _curColumnDef = (ColumnDef)it.next(); generate(template); } _curColumnDef = null; }
java
public void forAllColumns(String template, Properties attributes) throws XDocletException { for (Iterator it = _curTableDef.getColumns(); it.hasNext(); ) { _curColumnDef = (ColumnDef)it.next(); generate(template); } _curColumnDef = null; }
[ "public", "void", "forAllColumns", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "for", "(", "Iterator", "it", "=", "_curTableDef", ".", "getColumns", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "_curColumnDef", "=", "(", "ColumnDef", ")", "it", ".", "next", "(", ")", ";", "generate", "(", "template", ")", ";", "}", "_curColumnDef", "=", "null", ";", "}" ]
Processes the template for all column definitions of the current table. @param template The template @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="block"
[ "Processes", "the", "template", "for", "all", "column", "definitions", "of", "the", "current", "table", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1344-L1352
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.forAllForeignkeys
public void forAllForeignkeys(String template, Properties attributes) throws XDocletException { for (Iterator it = _curTableDef.getForeignkeys(); it.hasNext(); ) { _curForeignkeyDef = (ForeignkeyDef)it.next(); generate(template); } _curForeignkeyDef = null; }
java
public void forAllForeignkeys(String template, Properties attributes) throws XDocletException { for (Iterator it = _curTableDef.getForeignkeys(); it.hasNext(); ) { _curForeignkeyDef = (ForeignkeyDef)it.next(); generate(template); } _curForeignkeyDef = null; }
[ "public", "void", "forAllForeignkeys", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "for", "(", "Iterator", "it", "=", "_curTableDef", ".", "getForeignkeys", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "_curForeignkeyDef", "=", "(", "ForeignkeyDef", ")", "it", ".", "next", "(", ")", ";", "generate", "(", "template", ")", ";", "}", "_curForeignkeyDef", "=", "null", ";", "}" ]
Processes the template for all foreignkeys of the current table. @param template The template @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="block"
[ "Processes", "the", "template", "for", "all", "foreignkeys", "of", "the", "current", "table", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1362-L1370
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.forAllForeignkeyColumnPairs
public void forAllForeignkeyColumnPairs(String template, Properties attributes) throws XDocletException { for (int idx = 0; idx < _curForeignkeyDef.getNumColumnPairs(); idx++) { _curPairLeft = _curForeignkeyDef.getLocalColumn(idx); _curPairRight = _curForeignkeyDef.getRemoteColumn(idx); generate(template); } _curPairLeft = null; _curPairRight = null; }
java
public void forAllForeignkeyColumnPairs(String template, Properties attributes) throws XDocletException { for (int idx = 0; idx < _curForeignkeyDef.getNumColumnPairs(); idx++) { _curPairLeft = _curForeignkeyDef.getLocalColumn(idx); _curPairRight = _curForeignkeyDef.getRemoteColumn(idx); generate(template); } _curPairLeft = null; _curPairRight = null; }
[ "public", "void", "forAllForeignkeyColumnPairs", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "for", "(", "int", "idx", "=", "0", ";", "idx", "<", "_curForeignkeyDef", ".", "getNumColumnPairs", "(", ")", ";", "idx", "++", ")", "{", "_curPairLeft", "=", "_curForeignkeyDef", ".", "getLocalColumn", "(", "idx", ")", ";", "_curPairRight", "=", "_curForeignkeyDef", ".", "getRemoteColumn", "(", "idx", ")", ";", "generate", "(", "template", ")", ";", "}", "_curPairLeft", "=", "null", ";", "_curPairRight", "=", "null", ";", "}" ]
Processes the template for all column pairs of the current foreignkey. @param template The template @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="block"
[ "Processes", "the", "template", "for", "all", "column", "pairs", "of", "the", "current", "foreignkey", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1380-L1390
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.forAllIndices
public void forAllIndices(String template, Properties attributes) throws XDocletException { boolean processUnique = TypeConversionUtil.stringToBoolean(attributes.getProperty(ATTRIBUTE_UNIQUE), false); // first the default index _curIndexDef = _curTableDef.getIndex(null); if ((_curIndexDef != null) && (processUnique == _curIndexDef.isUnique())) { generate(template); } for (Iterator it = _curTableDef.getIndices(); it.hasNext(); ) { _curIndexDef = (IndexDef)it.next(); if (!_curIndexDef.isDefault() && (processUnique == _curIndexDef.isUnique())) { generate(template); } } _curIndexDef = null; }
java
public void forAllIndices(String template, Properties attributes) throws XDocletException { boolean processUnique = TypeConversionUtil.stringToBoolean(attributes.getProperty(ATTRIBUTE_UNIQUE), false); // first the default index _curIndexDef = _curTableDef.getIndex(null); if ((_curIndexDef != null) && (processUnique == _curIndexDef.isUnique())) { generate(template); } for (Iterator it = _curTableDef.getIndices(); it.hasNext(); ) { _curIndexDef = (IndexDef)it.next(); if (!_curIndexDef.isDefault() && (processUnique == _curIndexDef.isUnique())) { generate(template); } } _curIndexDef = null; }
[ "public", "void", "forAllIndices", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "boolean", "processUnique", "=", "TypeConversionUtil", ".", "stringToBoolean", "(", "attributes", ".", "getProperty", "(", "ATTRIBUTE_UNIQUE", ")", ",", "false", ")", ";", "// first the default index\r", "_curIndexDef", "=", "_curTableDef", ".", "getIndex", "(", "null", ")", ";", "if", "(", "(", "_curIndexDef", "!=", "null", ")", "&&", "(", "processUnique", "==", "_curIndexDef", ".", "isUnique", "(", ")", ")", ")", "{", "generate", "(", "template", ")", ";", "}", "for", "(", "Iterator", "it", "=", "_curTableDef", ".", "getIndices", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "_curIndexDef", "=", "(", "IndexDef", ")", "it", ".", "next", "(", ")", ";", "if", "(", "!", "_curIndexDef", ".", "isDefault", "(", ")", "&&", "(", "processUnique", "==", "_curIndexDef", ".", "isUnique", "(", ")", ")", ")", "{", "generate", "(", "template", ")", ";", "}", "}", "_curIndexDef", "=", "null", ";", "}" ]
Processes the template for all indices of the current table. @param template The template @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="block" @doc.param name="unique" optional="true" description="Whether to process the unique indices or not" values="true,false"
[ "Processes", "the", "template", "for", "all", "indices", "of", "the", "current", "table", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1402-L1421
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.forAllIndexColumns
public void forAllIndexColumns(String template, Properties attributes) throws XDocletException { for (Iterator it = _curIndexDef.getColumns(); it.hasNext(); ) { _curColumnDef = _curTableDef.getColumn((String)it.next()); generate(template); } _curColumnDef = null; }
java
public void forAllIndexColumns(String template, Properties attributes) throws XDocletException { for (Iterator it = _curIndexDef.getColumns(); it.hasNext(); ) { _curColumnDef = _curTableDef.getColumn((String)it.next()); generate(template); } _curColumnDef = null; }
[ "public", "void", "forAllIndexColumns", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "for", "(", "Iterator", "it", "=", "_curIndexDef", ".", "getColumns", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "_curColumnDef", "=", "_curTableDef", ".", "getColumn", "(", "(", "String", ")", "it", ".", "next", "(", ")", ")", ";", "generate", "(", "template", ")", ";", "}", "_curColumnDef", "=", "null", ";", "}" ]
Processes the template for all columns of the current table index. @param template The template @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="block"
[ "Processes", "the", "template", "for", "all", "columns", "of", "the", "current", "table", "index", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1431-L1439
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.name
public String name(Properties attributes) throws XDocletException { return getDefForLevel(attributes.getProperty(ATTRIBUTE_LEVEL)).getName(); }
java
public String name(Properties attributes) throws XDocletException { return getDefForLevel(attributes.getProperty(ATTRIBUTE_LEVEL)).getName(); }
[ "public", "String", "name", "(", "Properties", "attributes", ")", "throws", "XDocletException", "{", "return", "getDefForLevel", "(", "attributes", ".", "getProperty", "(", "ATTRIBUTE_LEVEL", ")", ")", ".", "getName", "(", ")", ";", "}" ]
Returns the name of the current object on the specified level. @param attributes The attributes of the tag @return The property value @exception XDocletException If an error occurs @doc.tag type="content" @doc.param name="level" optional="false" description="The level for the current object" values="class,field,reference,collection"
[ "Returns", "the", "name", "of", "the", "current", "object", "on", "the", "specified", "level", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1453-L1456
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.ifHasName
public void ifHasName(String template, Properties attributes) throws XDocletException { String name = getDefForLevel(attributes.getProperty(ATTRIBUTE_LEVEL)).getName(); if ((name != null) && (name.length() > 0)) { generate(template); } }
java
public void ifHasName(String template, Properties attributes) throws XDocletException { String name = getDefForLevel(attributes.getProperty(ATTRIBUTE_LEVEL)).getName(); if ((name != null) && (name.length() > 0)) { generate(template); } }
[ "public", "void", "ifHasName", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "String", "name", "=", "getDefForLevel", "(", "attributes", ".", "getProperty", "(", "ATTRIBUTE_LEVEL", ")", ")", ".", "getName", "(", ")", ";", "if", "(", "(", "name", "!=", "null", ")", "&&", "(", "name", ".", "length", "(", ")", ">", "0", ")", ")", "{", "generate", "(", "template", ")", ";", "}", "}" ]
Processes the template if the current object on the specified level has a non-empty name. @param attributes The attributes of the tag @return The property value @exception XDocletException If an error occurs @doc.tag type="block" @doc.param name="level" optional="false" description="The level for the current object" values="class,field,reference,collection"
[ "Processes", "the", "template", "if", "the", "current", "object", "on", "the", "specified", "level", "has", "a", "non", "-", "empty", "name", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1468-L1476
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.ifHasProperty
public void ifHasProperty(String template, Properties attributes) throws XDocletException { String value = getPropertyValue(attributes.getProperty(ATTRIBUTE_LEVEL), attributes.getProperty(ATTRIBUTE_NAME)); if (value != null) { generate(template); } }
java
public void ifHasProperty(String template, Properties attributes) throws XDocletException { String value = getPropertyValue(attributes.getProperty(ATTRIBUTE_LEVEL), attributes.getProperty(ATTRIBUTE_NAME)); if (value != null) { generate(template); } }
[ "public", "void", "ifHasProperty", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "String", "value", "=", "getPropertyValue", "(", "attributes", ".", "getProperty", "(", "ATTRIBUTE_LEVEL", ")", ",", "attributes", ".", "getProperty", "(", "ATTRIBUTE_NAME", ")", ")", ";", "if", "(", "value", "!=", "null", ")", "{", "generate", "(", "template", ")", ";", "}", "}" ]
Determines whether the current object on the specified level has a specific property, and if so, processes the template @param template The template @param attributes The attributes of the tag @exception XDocletException If an error occurs @doc.tag type="block" @doc.param name="level" optional="false" description="The level for the current object" values="class,field,reference,collection" @doc.param name="name" optional="false" description="The name of the property"
[ "Determines", "whether", "the", "current", "object", "on", "the", "specified", "level", "has", "a", "specific", "property", "and", "if", "so", "processes", "the", "template" ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1490-L1498
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.propertyValue
public String propertyValue(Properties attributes) throws XDocletException { String value = getPropertyValue(attributes.getProperty(ATTRIBUTE_LEVEL), attributes.getProperty(ATTRIBUTE_NAME)); if (value == null) { value = attributes.getProperty(ATTRIBUTE_DEFAULT); } return value; }
java
public String propertyValue(Properties attributes) throws XDocletException { String value = getPropertyValue(attributes.getProperty(ATTRIBUTE_LEVEL), attributes.getProperty(ATTRIBUTE_NAME)); if (value == null) { value = attributes.getProperty(ATTRIBUTE_DEFAULT); } return value; }
[ "public", "String", "propertyValue", "(", "Properties", "attributes", ")", "throws", "XDocletException", "{", "String", "value", "=", "getPropertyValue", "(", "attributes", ".", "getProperty", "(", "ATTRIBUTE_LEVEL", ")", ",", "attributes", ".", "getProperty", "(", "ATTRIBUTE_NAME", ")", ")", ";", "if", "(", "value", "==", "null", ")", "{", "value", "=", "attributes", ".", "getProperty", "(", "ATTRIBUTE_DEFAULT", ")", ";", "}", "return", "value", ";", "}" ]
Returns the value of a property of the current object on the specified level. @param attributes The attributes of the tag @return The property value @exception XDocletException If an error occurs @doc.tag type="content" @doc.param name="level" optional="false" description="The level for the current object" values="class,field,reference,collection" @doc.param name="name" optional="false" description="The name of the property" @doc.param name="default" optional="true" description="A default value to use if the property is not defined"
[ "Returns", "the", "value", "of", "a", "property", "of", "the", "current", "object", "on", "the", "specified", "level", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1535-L1544
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.ifPropertyValueEquals
public void ifPropertyValueEquals(String template, Properties attributes) throws XDocletException { String value = getPropertyValue(attributes.getProperty(ATTRIBUTE_LEVEL), attributes.getProperty(ATTRIBUTE_NAME)); String expected = attributes.getProperty(ATTRIBUTE_VALUE); if (value == null) { value = attributes.getProperty(ATTRIBUTE_DEFAULT); } if (expected.equals(value)) { generate(template); } }
java
public void ifPropertyValueEquals(String template, Properties attributes) throws XDocletException { String value = getPropertyValue(attributes.getProperty(ATTRIBUTE_LEVEL), attributes.getProperty(ATTRIBUTE_NAME)); String expected = attributes.getProperty(ATTRIBUTE_VALUE); if (value == null) { value = attributes.getProperty(ATTRIBUTE_DEFAULT); } if (expected.equals(value)) { generate(template); } }
[ "public", "void", "ifPropertyValueEquals", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "String", "value", "=", "getPropertyValue", "(", "attributes", ".", "getProperty", "(", "ATTRIBUTE_LEVEL", ")", ",", "attributes", ".", "getProperty", "(", "ATTRIBUTE_NAME", ")", ")", ";", "String", "expected", "=", "attributes", ".", "getProperty", "(", "ATTRIBUTE_VALUE", ")", ";", "if", "(", "value", "==", "null", ")", "{", "value", "=", "attributes", ".", "getProperty", "(", "ATTRIBUTE_DEFAULT", ")", ";", "}", "if", "(", "expected", ".", "equals", "(", "value", ")", ")", "{", "generate", "(", "template", ")", ";", "}", "}" ]
Processes the template if the property value of the current object on the specified level equals the given value. @param template The template @param attributes The attributes of the tag @exception XDocletException If an error occurs @doc.tag type="block" @doc.param name="level" optional="false" description="The level for the current object" values="class,field,reference,collection" @doc.param name="name" optional="false" description="The name of the property" @doc.param name="value" optional="false" description="The value to check for" @doc.param name="default" optional="true" description="A default value to use if the property is not defined"
[ "Processes", "the", "template", "if", "the", "property", "value", "of", "the", "current", "object", "on", "the", "specified", "level", "equals", "the", "given", "value", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1560-L1573
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.forAllValuePairs
public void forAllValuePairs(String template, Properties attributes) throws XDocletException { String name = attributes.getProperty(ATTRIBUTE_NAME, "attributes"); String defaultValue = attributes.getProperty(ATTRIBUTE_DEFAULT_RIGHT, ""); String attributePairs = getPropertyValue(attributes.getProperty(ATTRIBUTE_LEVEL), name); if ((attributePairs == null) || (attributePairs.length() == 0)) { return; } String token; int pos; for (CommaListIterator it = new CommaListIterator(attributePairs); it.hasNext();) { token = it.getNext(); pos = token.indexOf('='); if (pos >= 0) { _curPairLeft = token.substring(0, pos); _curPairRight = (pos < token.length() - 1 ? token.substring(pos + 1) : defaultValue); } else { _curPairLeft = token; _curPairRight = defaultValue; } if (_curPairLeft.length() > 0) { generate(template); } } _curPairLeft = null; _curPairRight = null; }
java
public void forAllValuePairs(String template, Properties attributes) throws XDocletException { String name = attributes.getProperty(ATTRIBUTE_NAME, "attributes"); String defaultValue = attributes.getProperty(ATTRIBUTE_DEFAULT_RIGHT, ""); String attributePairs = getPropertyValue(attributes.getProperty(ATTRIBUTE_LEVEL), name); if ((attributePairs == null) || (attributePairs.length() == 0)) { return; } String token; int pos; for (CommaListIterator it = new CommaListIterator(attributePairs); it.hasNext();) { token = it.getNext(); pos = token.indexOf('='); if (pos >= 0) { _curPairLeft = token.substring(0, pos); _curPairRight = (pos < token.length() - 1 ? token.substring(pos + 1) : defaultValue); } else { _curPairLeft = token; _curPairRight = defaultValue; } if (_curPairLeft.length() > 0) { generate(template); } } _curPairLeft = null; _curPairRight = null; }
[ "public", "void", "forAllValuePairs", "(", "String", "template", ",", "Properties", "attributes", ")", "throws", "XDocletException", "{", "String", "name", "=", "attributes", ".", "getProperty", "(", "ATTRIBUTE_NAME", ",", "\"attributes\"", ")", ";", "String", "defaultValue", "=", "attributes", ".", "getProperty", "(", "ATTRIBUTE_DEFAULT_RIGHT", ",", "\"\"", ")", ";", "String", "attributePairs", "=", "getPropertyValue", "(", "attributes", ".", "getProperty", "(", "ATTRIBUTE_LEVEL", ")", ",", "name", ")", ";", "if", "(", "(", "attributePairs", "==", "null", ")", "||", "(", "attributePairs", ".", "length", "(", ")", "==", "0", ")", ")", "{", "return", ";", "}", "String", "token", ";", "int", "pos", ";", "for", "(", "CommaListIterator", "it", "=", "new", "CommaListIterator", "(", "attributePairs", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "token", "=", "it", ".", "getNext", "(", ")", ";", "pos", "=", "token", ".", "indexOf", "(", "'", "'", ")", ";", "if", "(", "pos", ">=", "0", ")", "{", "_curPairLeft", "=", "token", ".", "substring", "(", "0", ",", "pos", ")", ";", "_curPairRight", "=", "(", "pos", "<", "token", ".", "length", "(", ")", "-", "1", "?", "token", ".", "substring", "(", "pos", "+", "1", ")", ":", "defaultValue", ")", ";", "}", "else", "{", "_curPairLeft", "=", "token", ";", "_curPairRight", "=", "defaultValue", ";", "}", "if", "(", "_curPairLeft", ".", "length", "(", ")", ">", "0", ")", "{", "generate", "(", "template", ")", ";", "}", "}", "_curPairLeft", "=", "null", ";", "_curPairRight", "=", "null", ";", "}" ]
Processes the template for the comma-separated value pairs in an attribute of the current object on the specified level. @param template The template @param attributes The attributes of the tag @exception XDocletException if an error occurs @doc.tag type="block" @doc.param name="level" optional="false" description="The level for the current object" values="class,field,reference,collection" @doc.param name="name" optional="true" description="The name of the attribute containg attributes (defaults to 'attributes')" @doc.param name="default-right" optional="true" description="The default right value if none is given (defaults to empty value)"
[ "Processes", "the", "template", "for", "the", "comma", "-", "separated", "value", "pairs", "in", "an", "attribute", "of", "the", "current", "object", "on", "the", "specified", "level", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1616-L1651
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.ensureClassDef
private ClassDescriptorDef ensureClassDef(XClass original) { String name = original.getQualifiedName(); ClassDescriptorDef classDef = _model.getClass(name); if (classDef == null) { classDef = new ClassDescriptorDef(original); _model.addClass(classDef); } return classDef; }
java
private ClassDescriptorDef ensureClassDef(XClass original) { String name = original.getQualifiedName(); ClassDescriptorDef classDef = _model.getClass(name); if (classDef == null) { classDef = new ClassDescriptorDef(original); _model.addClass(classDef); } return classDef; }
[ "private", "ClassDescriptorDef", "ensureClassDef", "(", "XClass", "original", ")", "{", "String", "name", "=", "original", ".", "getQualifiedName", "(", ")", ";", "ClassDescriptorDef", "classDef", "=", "_model", ".", "getClass", "(", "name", ")", ";", "if", "(", "classDef", "==", "null", ")", "{", "classDef", "=", "new", "ClassDescriptorDef", "(", "original", ")", ";", "_model", ".", "addClass", "(", "classDef", ")", ";", "}", "return", "classDef", ";", "}" ]
Makes sure that there is a class definition for the given qualified name, and returns it. @param original The XDoclet class object @return The class definition
[ "Makes", "sure", "that", "there", "is", "a", "class", "definition", "for", "the", "given", "qualified", "name", "and", "returns", "it", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1691-L1702
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.addDirectSubTypes
private void addDirectSubTypes(XClass type, ArrayList subTypes) { if (type.isInterface()) { if (type.getExtendingInterfaces() != null) { subTypes.addAll(type.getExtendingInterfaces()); } // we have to traverse the implementing classes as these array contains all classes that // implement the interface, not only those who have an "implement" declaration // note that for whatever reason the declared interfaces are not exported via the XClass interface // so we have to get them via the underlying class which is hopefully a subclass of AbstractClass if (type.getImplementingClasses() != null) { Collection declaredInterfaces = null; XClass subType; for (Iterator it = type.getImplementingClasses().iterator(); it.hasNext(); ) { subType = (XClass)it.next(); if (subType instanceof AbstractClass) { declaredInterfaces = ((AbstractClass)subType).getDeclaredInterfaces(); if ((declaredInterfaces != null) && declaredInterfaces.contains(type)) { subTypes.add(subType); } } else { // Otherwise we have to live with the bug subTypes.add(subType); } } } } else { subTypes.addAll(type.getDirectSubclasses()); } }
java
private void addDirectSubTypes(XClass type, ArrayList subTypes) { if (type.isInterface()) { if (type.getExtendingInterfaces() != null) { subTypes.addAll(type.getExtendingInterfaces()); } // we have to traverse the implementing classes as these array contains all classes that // implement the interface, not only those who have an "implement" declaration // note that for whatever reason the declared interfaces are not exported via the XClass interface // so we have to get them via the underlying class which is hopefully a subclass of AbstractClass if (type.getImplementingClasses() != null) { Collection declaredInterfaces = null; XClass subType; for (Iterator it = type.getImplementingClasses().iterator(); it.hasNext(); ) { subType = (XClass)it.next(); if (subType instanceof AbstractClass) { declaredInterfaces = ((AbstractClass)subType).getDeclaredInterfaces(); if ((declaredInterfaces != null) && declaredInterfaces.contains(type)) { subTypes.add(subType); } } else { // Otherwise we have to live with the bug subTypes.add(subType); } } } } else { subTypes.addAll(type.getDirectSubclasses()); } }
[ "private", "void", "addDirectSubTypes", "(", "XClass", "type", ",", "ArrayList", "subTypes", ")", "{", "if", "(", "type", ".", "isInterface", "(", ")", ")", "{", "if", "(", "type", ".", "getExtendingInterfaces", "(", ")", "!=", "null", ")", "{", "subTypes", ".", "addAll", "(", "type", ".", "getExtendingInterfaces", "(", ")", ")", ";", "}", "// we have to traverse the implementing classes as these array contains all classes that\r", "// implement the interface, not only those who have an \"implement\" declaration\r", "// note that for whatever reason the declared interfaces are not exported via the XClass interface\r", "// so we have to get them via the underlying class which is hopefully a subclass of AbstractClass\r", "if", "(", "type", ".", "getImplementingClasses", "(", ")", "!=", "null", ")", "{", "Collection", "declaredInterfaces", "=", "null", ";", "XClass", "subType", ";", "for", "(", "Iterator", "it", "=", "type", ".", "getImplementingClasses", "(", ")", ".", "iterator", "(", ")", ";", "it", ".", "hasNext", "(", ")", ";", ")", "{", "subType", "=", "(", "XClass", ")", "it", ".", "next", "(", ")", ";", "if", "(", "subType", "instanceof", "AbstractClass", ")", "{", "declaredInterfaces", "=", "(", "(", "AbstractClass", ")", "subType", ")", ".", "getDeclaredInterfaces", "(", ")", ";", "if", "(", "(", "declaredInterfaces", "!=", "null", ")", "&&", "declaredInterfaces", ".", "contains", "(", "type", ")", ")", "{", "subTypes", ".", "add", "(", "subType", ")", ";", "}", "}", "else", "{", "// Otherwise we have to live with the bug\r", "subTypes", ".", "add", "(", "subType", ")", ";", "}", "}", "}", "}", "else", "{", "subTypes", ".", "addAll", "(", "type", ".", "getDirectSubclasses", "(", ")", ")", ";", "}", "}" ]
Adds all direct subtypes to the given list. @param type The type for which to determine the direct subtypes @param subTypes The list to receive the subtypes
[ "Adds", "all", "direct", "subtypes", "to", "the", "given", "list", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1710-L1750
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.searchForPersistentSubType
private String searchForPersistentSubType(XClass type) { ArrayList queue = new ArrayList(); XClass subType; queue.add(type); while (!queue.isEmpty()) { subType = (XClass)queue.get(0); queue.remove(0); if (_model.hasClass(subType.getQualifiedName())) { return subType.getQualifiedName(); } addDirectSubTypes(subType, queue); } return null; }
java
private String searchForPersistentSubType(XClass type) { ArrayList queue = new ArrayList(); XClass subType; queue.add(type); while (!queue.isEmpty()) { subType = (XClass)queue.get(0); queue.remove(0); if (_model.hasClass(subType.getQualifiedName())) { return subType.getQualifiedName(); } addDirectSubTypes(subType, queue); } return null; }
[ "private", "String", "searchForPersistentSubType", "(", "XClass", "type", ")", "{", "ArrayList", "queue", "=", "new", "ArrayList", "(", ")", ";", "XClass", "subType", ";", "queue", ".", "add", "(", "type", ")", ";", "while", "(", "!", "queue", ".", "isEmpty", "(", ")", ")", "{", "subType", "=", "(", "XClass", ")", "queue", ".", "get", "(", "0", ")", ";", "queue", ".", "remove", "(", "0", ")", ";", "if", "(", "_model", ".", "hasClass", "(", "subType", ".", "getQualifiedName", "(", ")", ")", ")", "{", "return", "subType", ".", "getQualifiedName", "(", ")", ";", "}", "addDirectSubTypes", "(", "subType", ",", "queue", ")", ";", "}", "return", "null", ";", "}" ]
Searches the type and its sub types for the nearest ojb-persistent type and returns its name. @param type The type to search @return The qualified name of the found type or <code>null</code> if no type has been found
[ "Searches", "the", "type", "and", "its", "sub", "types", "for", "the", "nearest", "ojb", "-", "persistent", "type", "and", "returns", "its", "name", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1801-L1818
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.getDefForLevel
private DefBase getDefForLevel(String level) { if (LEVEL_CLASS.equals(level)) { return _curClassDef; } else if (LEVEL_FIELD.equals(level)) { return _curFieldDef; } else if (LEVEL_REFERENCE.equals(level)) { return _curReferenceDef; } else if (LEVEL_COLLECTION.equals(level)) { return _curCollectionDef; } else if (LEVEL_OBJECT_CACHE.equals(level)) { return _curObjectCacheDef; } else if (LEVEL_INDEX_DESC.equals(level)) { return _curIndexDescriptorDef; } else if (LEVEL_TABLE.equals(level)) { return _curTableDef; } else if (LEVEL_COLUMN.equals(level)) { return _curColumnDef; } else if (LEVEL_FOREIGNKEY.equals(level)) { return _curForeignkeyDef; } else if (LEVEL_INDEX.equals(level)) { return _curIndexDef; } else if (LEVEL_PROCEDURE.equals(level)) { return _curProcedureDef; } else if (LEVEL_PROCEDURE_ARGUMENT.equals(level)) { return _curProcedureArgumentDef; } else { return null; } }
java
private DefBase getDefForLevel(String level) { if (LEVEL_CLASS.equals(level)) { return _curClassDef; } else if (LEVEL_FIELD.equals(level)) { return _curFieldDef; } else if (LEVEL_REFERENCE.equals(level)) { return _curReferenceDef; } else if (LEVEL_COLLECTION.equals(level)) { return _curCollectionDef; } else if (LEVEL_OBJECT_CACHE.equals(level)) { return _curObjectCacheDef; } else if (LEVEL_INDEX_DESC.equals(level)) { return _curIndexDescriptorDef; } else if (LEVEL_TABLE.equals(level)) { return _curTableDef; } else if (LEVEL_COLUMN.equals(level)) { return _curColumnDef; } else if (LEVEL_FOREIGNKEY.equals(level)) { return _curForeignkeyDef; } else if (LEVEL_INDEX.equals(level)) { return _curIndexDef; } else if (LEVEL_PROCEDURE.equals(level)) { return _curProcedureDef; } else if (LEVEL_PROCEDURE_ARGUMENT.equals(level)) { return _curProcedureArgumentDef; } else { return null; } }
[ "private", "DefBase", "getDefForLevel", "(", "String", "level", ")", "{", "if", "(", "LEVEL_CLASS", ".", "equals", "(", "level", ")", ")", "{", "return", "_curClassDef", ";", "}", "else", "if", "(", "LEVEL_FIELD", ".", "equals", "(", "level", ")", ")", "{", "return", "_curFieldDef", ";", "}", "else", "if", "(", "LEVEL_REFERENCE", ".", "equals", "(", "level", ")", ")", "{", "return", "_curReferenceDef", ";", "}", "else", "if", "(", "LEVEL_COLLECTION", ".", "equals", "(", "level", ")", ")", "{", "return", "_curCollectionDef", ";", "}", "else", "if", "(", "LEVEL_OBJECT_CACHE", ".", "equals", "(", "level", ")", ")", "{", "return", "_curObjectCacheDef", ";", "}", "else", "if", "(", "LEVEL_INDEX_DESC", ".", "equals", "(", "level", ")", ")", "{", "return", "_curIndexDescriptorDef", ";", "}", "else", "if", "(", "LEVEL_TABLE", ".", "equals", "(", "level", ")", ")", "{", "return", "_curTableDef", ";", "}", "else", "if", "(", "LEVEL_COLUMN", ".", "equals", "(", "level", ")", ")", "{", "return", "_curColumnDef", ";", "}", "else", "if", "(", "LEVEL_FOREIGNKEY", ".", "equals", "(", "level", ")", ")", "{", "return", "_curForeignkeyDef", ";", "}", "else", "if", "(", "LEVEL_INDEX", ".", "equals", "(", "level", ")", ")", "{", "return", "_curIndexDef", ";", "}", "else", "if", "(", "LEVEL_PROCEDURE", ".", "equals", "(", "level", ")", ")", "{", "return", "_curProcedureDef", ";", "}", "else", "if", "(", "LEVEL_PROCEDURE_ARGUMENT", ".", "equals", "(", "level", ")", ")", "{", "return", "_curProcedureArgumentDef", ";", "}", "else", "{", "return", "null", ";", "}", "}" ]
Returns the current definition on the indicated level. @param level The level @return The definition
[ "Returns", "the", "current", "definition", "on", "the", "indicated", "level", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1827-L1881
train
kuali/ojb-1.0.4
src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java
OjbTagsHandler.getPropertyValue
private String getPropertyValue(String level, String name) { return getDefForLevel(level).getProperty(name); }
java
private String getPropertyValue(String level, String name) { return getDefForLevel(level).getProperty(name); }
[ "private", "String", "getPropertyValue", "(", "String", "level", ",", "String", "name", ")", "{", "return", "getDefForLevel", "(", "level", ")", ".", "getProperty", "(", "name", ")", ";", "}" ]
Returns the value of the indicated property of the current object on the specified level. @param level The level @param name The name of the property @return The property value
[ "Returns", "the", "value", "of", "the", "indicated", "property", "of", "the", "current", "object", "on", "the", "specified", "level", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/xdoclet/java/src/xdoclet/modules/ojb/OjbTagsHandler.java#L1901-L1904
train
foundation-runtime/logging
logging-log4j/src/main/java/com/cisco/oss/foundation/logging/appender/LogFileCompressionStrategy.java
LogFileCompressionStrategy.compress
final void compress(final File backupFile, final AppenderRollingProperties properties) { if (this.isCompressed(backupFile)) { LogLog.debug("Backup log file " + backupFile.getName() + " is already compressed"); return; // try not to do unnecessary work } final long lastModified = backupFile.lastModified(); if (0L == lastModified) { LogLog.debug("Backup log file " + backupFile.getName() + " may have been scavenged"); return; // backup file may have been scavenged } final File deflatedFile = this.createDeflatedFile(backupFile); if (deflatedFile == null) { LogLog.debug("Backup log file " + backupFile.getName() + " may have been scavenged"); return; // an error occurred creating the file } if (this.compress(backupFile, deflatedFile, properties)) { deflatedFile.setLastModified(lastModified); FileHelper.getInstance().deleteExisting(backupFile); LogLog.debug("Compressed backup log file to " + deflatedFile.getName()); } else { FileHelper.getInstance().deleteExisting(deflatedFile); // clean up LogLog .debug("Unable to compress backup log file " + backupFile.getName()); } }
java
final void compress(final File backupFile, final AppenderRollingProperties properties) { if (this.isCompressed(backupFile)) { LogLog.debug("Backup log file " + backupFile.getName() + " is already compressed"); return; // try not to do unnecessary work } final long lastModified = backupFile.lastModified(); if (0L == lastModified) { LogLog.debug("Backup log file " + backupFile.getName() + " may have been scavenged"); return; // backup file may have been scavenged } final File deflatedFile = this.createDeflatedFile(backupFile); if (deflatedFile == null) { LogLog.debug("Backup log file " + backupFile.getName() + " may have been scavenged"); return; // an error occurred creating the file } if (this.compress(backupFile, deflatedFile, properties)) { deflatedFile.setLastModified(lastModified); FileHelper.getInstance().deleteExisting(backupFile); LogLog.debug("Compressed backup log file to " + deflatedFile.getName()); } else { FileHelper.getInstance().deleteExisting(deflatedFile); // clean up LogLog .debug("Unable to compress backup log file " + backupFile.getName()); } }
[ "final", "void", "compress", "(", "final", "File", "backupFile", ",", "final", "AppenderRollingProperties", "properties", ")", "{", "if", "(", "this", ".", "isCompressed", "(", "backupFile", ")", ")", "{", "LogLog", ".", "debug", "(", "\"Backup log file \"", "+", "backupFile", ".", "getName", "(", ")", "+", "\" is already compressed\"", ")", ";", "return", ";", "// try not to do unnecessary work", "}", "final", "long", "lastModified", "=", "backupFile", ".", "lastModified", "(", ")", ";", "if", "(", "0L", "==", "lastModified", ")", "{", "LogLog", ".", "debug", "(", "\"Backup log file \"", "+", "backupFile", ".", "getName", "(", ")", "+", "\" may have been scavenged\"", ")", ";", "return", ";", "// backup file may have been scavenged", "}", "final", "File", "deflatedFile", "=", "this", ".", "createDeflatedFile", "(", "backupFile", ")", ";", "if", "(", "deflatedFile", "==", "null", ")", "{", "LogLog", ".", "debug", "(", "\"Backup log file \"", "+", "backupFile", ".", "getName", "(", ")", "+", "\" may have been scavenged\"", ")", ";", "return", ";", "// an error occurred creating the file", "}", "if", "(", "this", ".", "compress", "(", "backupFile", ",", "deflatedFile", ",", "properties", ")", ")", "{", "deflatedFile", ".", "setLastModified", "(", "lastModified", ")", ";", "FileHelper", ".", "getInstance", "(", ")", ".", "deleteExisting", "(", "backupFile", ")", ";", "LogLog", ".", "debug", "(", "\"Compressed backup log file to \"", "+", "deflatedFile", ".", "getName", "(", ")", ")", ";", "}", "else", "{", "FileHelper", ".", "getInstance", "(", ")", ".", "deleteExisting", "(", "deflatedFile", ")", ";", "// clean up", "LogLog", ".", "debug", "(", "\"Unable to compress backup log file \"", "+", "backupFile", ".", "getName", "(", ")", ")", ";", "}", "}" ]
Template method responsible for file compression checks, file creation, and delegation to specific strategy implementations. @param backupFile The file to be compressed. @param properties The appender's configuration.
[ "Template", "method", "responsible", "for", "file", "compression", "checks", "file", "creation", "and", "delegation", "to", "specific", "strategy", "implementations", "." ]
cd0a07b3c5b458ecf90ab92a1e0c72a067f5cbd6
https://github.com/foundation-runtime/logging/blob/cd0a07b3c5b458ecf90ab92a1e0c72a067f5cbd6/logging-log4j/src/main/java/com/cisco/oss/foundation/logging/appender/LogFileCompressionStrategy.java#L121-L149
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/PersistenceBrokerFactory.java
PersistenceBrokerFactory.createPersistenceBroker
public static PersistenceBroker createPersistenceBroker(String jcdAlias, String user, String password) throws PBFactoryException { return PersistenceBrokerFactoryFactory.instance(). createPersistenceBroker(jcdAlias, user, password); }
java
public static PersistenceBroker createPersistenceBroker(String jcdAlias, String user, String password) throws PBFactoryException { return PersistenceBrokerFactoryFactory.instance(). createPersistenceBroker(jcdAlias, user, password); }
[ "public", "static", "PersistenceBroker", "createPersistenceBroker", "(", "String", "jcdAlias", ",", "String", "user", ",", "String", "password", ")", "throws", "PBFactoryException", "{", "return", "PersistenceBrokerFactoryFactory", ".", "instance", "(", ")", ".", "createPersistenceBroker", "(", "jcdAlias", ",", "user", ",", "password", ")", ";", "}" ]
Creates a new broker instance. @param jcdAlias The jdbc connection descriptor name as defined in the repository @param user The user name to be used for connecting to the database @param password The password to be used for connecting to the database @return The persistence broker @see org.apache.ojb.broker.core.PersistenceBrokerFactoryIF#createPersistenceBroker(java.lang.String, java.lang.String, java.lang.String)
[ "Creates", "a", "new", "broker", "instance", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/PersistenceBrokerFactory.java#L87-L93
train
jembi/openhim-mediator-engine-java
src/main/java/org/openhim/mediator/engine/MediatorConfig.java
MediatorConfig.setRegistrationConfig
public void setRegistrationConfig(RegistrationConfig registrationConfig) { this.registrationConfig = registrationConfig; if (registrationConfig.getDefaultConfig()!=null) { for (String key : registrationConfig.getDefaultConfig().keySet()) { dynamicConfig.put(key, registrationConfig.getDefaultConfig().get(key)); } } }
java
public void setRegistrationConfig(RegistrationConfig registrationConfig) { this.registrationConfig = registrationConfig; if (registrationConfig.getDefaultConfig()!=null) { for (String key : registrationConfig.getDefaultConfig().keySet()) { dynamicConfig.put(key, registrationConfig.getDefaultConfig().get(key)); } } }
[ "public", "void", "setRegistrationConfig", "(", "RegistrationConfig", "registrationConfig", ")", "{", "this", ".", "registrationConfig", "=", "registrationConfig", ";", "if", "(", "registrationConfig", ".", "getDefaultConfig", "(", ")", "!=", "null", ")", "{", "for", "(", "String", "key", ":", "registrationConfig", ".", "getDefaultConfig", "(", ")", ".", "keySet", "(", ")", ")", "{", "dynamicConfig", ".", "put", "(", "key", ",", "registrationConfig", ".", "getDefaultConfig", "(", ")", ".", "get", "(", "key", ")", ")", ";", "}", "}", "}" ]
The mediator registration config. If it contains default config and definitions, then the dynamic config will be initialized with those values. @see org.openhim.mediator.engine.RegistrationConfig @see #getDynamicConfig()
[ "The", "mediator", "registration", "config", ".", "If", "it", "contains", "default", "config", "and", "definitions", "then", "the", "dynamic", "config", "will", "be", "initialized", "with", "those", "values", "." ]
02adc0da4302cbde26cc9a5c1ce91ec6277e4f68
https://github.com/jembi/openhim-mediator-engine-java/blob/02adc0da4302cbde26cc9a5c1ce91ec6277e4f68/src/main/java/org/openhim/mediator/engine/MediatorConfig.java#L345-L353
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/metadata/RepositoryXmlHandler.java
RepositoryXmlHandler.characters
public void characters(char ch[], int start, int length) { if (m_CurrentString == null) m_CurrentString = new String(ch, start, length); else m_CurrentString += new String(ch, start, length); }
java
public void characters(char ch[], int start, int length) { if (m_CurrentString == null) m_CurrentString = new String(ch, start, length); else m_CurrentString += new String(ch, start, length); }
[ "public", "void", "characters", "(", "char", "ch", "[", "]", ",", "int", "start", ",", "int", "length", ")", "{", "if", "(", "m_CurrentString", "==", "null", ")", "m_CurrentString", "=", "new", "String", "(", "ch", ",", "start", ",", "length", ")", ";", "else", "m_CurrentString", "+=", "new", "String", "(", "ch", ",", "start", ",", "length", ")", ";", "}" ]
characters callback.
[ "characters", "callback", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/metadata/RepositoryXmlHandler.java#L1146-L1152
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/accesslayer/RsIterator.java
RsIterator.hasNext
public synchronized boolean hasNext() { try { if (!isHasCalledCheck()) { setHasCalledCheck(true); setHasNext(getRsAndStmt().m_rs.next()); if (!getHasNext()) { autoReleaseDbResources(); } } } catch (Exception ex) { setHasNext(false); autoReleaseDbResources(); if(ex instanceof ResourceClosedException) { throw (ResourceClosedException)ex; } if(ex instanceof SQLException) { throw new PersistenceBrokerSQLException("Calling ResultSet.next() failed", (SQLException) ex); } else { throw new PersistenceBrokerException("Can't get next row from ResultSet", ex); } } if (logger.isDebugEnabled()) logger.debug("hasNext() -> " + getHasNext()); return getHasNext(); }
java
public synchronized boolean hasNext() { try { if (!isHasCalledCheck()) { setHasCalledCheck(true); setHasNext(getRsAndStmt().m_rs.next()); if (!getHasNext()) { autoReleaseDbResources(); } } } catch (Exception ex) { setHasNext(false); autoReleaseDbResources(); if(ex instanceof ResourceClosedException) { throw (ResourceClosedException)ex; } if(ex instanceof SQLException) { throw new PersistenceBrokerSQLException("Calling ResultSet.next() failed", (SQLException) ex); } else { throw new PersistenceBrokerException("Can't get next row from ResultSet", ex); } } if (logger.isDebugEnabled()) logger.debug("hasNext() -> " + getHasNext()); return getHasNext(); }
[ "public", "synchronized", "boolean", "hasNext", "(", ")", "{", "try", "{", "if", "(", "!", "isHasCalledCheck", "(", ")", ")", "{", "setHasCalledCheck", "(", "true", ")", ";", "setHasNext", "(", "getRsAndStmt", "(", ")", ".", "m_rs", ".", "next", "(", ")", ")", ";", "if", "(", "!", "getHasNext", "(", ")", ")", "{", "autoReleaseDbResources", "(", ")", ";", "}", "}", "}", "catch", "(", "Exception", "ex", ")", "{", "setHasNext", "(", "false", ")", ";", "autoReleaseDbResources", "(", ")", ";", "if", "(", "ex", "instanceof", "ResourceClosedException", ")", "{", "throw", "(", "ResourceClosedException", ")", "ex", ";", "}", "if", "(", "ex", "instanceof", "SQLException", ")", "{", "throw", "new", "PersistenceBrokerSQLException", "(", "\"Calling ResultSet.next() failed\"", ",", "(", "SQLException", ")", "ex", ")", ";", "}", "else", "{", "throw", "new", "PersistenceBrokerException", "(", "\"Can't get next row from ResultSet\"", ",", "ex", ")", ";", "}", "}", "if", "(", "logger", ".", "isDebugEnabled", "(", ")", ")", "logger", ".", "debug", "(", "\"hasNext() -> \"", "+", "getHasNext", "(", ")", ")", ";", "return", "getHasNext", "(", ")", ";", "}" ]
returns true if there are still more rows in the underlying ResultSet. Returns false if ResultSet is exhausted.
[ "returns", "true", "if", "there", "are", "still", "more", "rows", "in", "the", "underlying", "ResultSet", ".", "Returns", "false", "if", "ResultSet", "is", "exhausted", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/accesslayer/RsIterator.java#L226-L261
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/accesslayer/RsIterator.java
RsIterator.next
public synchronized Object next() throws NoSuchElementException { try { if (!isHasCalledCheck()) { hasNext(); } setHasCalledCheck(false); if (getHasNext()) { Object obj = getObjectFromResultSet(); m_current_row++; // Invoke events on PersistenceBrokerAware instances and listeners // set target object if (!disableLifeCycleEvents) { getAfterLookupEvent().setTarget(obj); getBroker().fireBrokerEvent(getAfterLookupEvent()); getAfterLookupEvent().setTarget(null); } return obj; } else { throw new NoSuchElementException("inner hasNext was false"); } } catch (ResourceClosedException ex) { autoReleaseDbResources(); throw ex; } catch (NoSuchElementException ex) { autoReleaseDbResources(); logger.error("Error while iterate ResultSet for query " + m_queryObject, ex); throw new NoSuchElementException("Could not obtain next object: " + ex.getMessage()); } }
java
public synchronized Object next() throws NoSuchElementException { try { if (!isHasCalledCheck()) { hasNext(); } setHasCalledCheck(false); if (getHasNext()) { Object obj = getObjectFromResultSet(); m_current_row++; // Invoke events on PersistenceBrokerAware instances and listeners // set target object if (!disableLifeCycleEvents) { getAfterLookupEvent().setTarget(obj); getBroker().fireBrokerEvent(getAfterLookupEvent()); getAfterLookupEvent().setTarget(null); } return obj; } else { throw new NoSuchElementException("inner hasNext was false"); } } catch (ResourceClosedException ex) { autoReleaseDbResources(); throw ex; } catch (NoSuchElementException ex) { autoReleaseDbResources(); logger.error("Error while iterate ResultSet for query " + m_queryObject, ex); throw new NoSuchElementException("Could not obtain next object: " + ex.getMessage()); } }
[ "public", "synchronized", "Object", "next", "(", ")", "throws", "NoSuchElementException", "{", "try", "{", "if", "(", "!", "isHasCalledCheck", "(", ")", ")", "{", "hasNext", "(", ")", ";", "}", "setHasCalledCheck", "(", "false", ")", ";", "if", "(", "getHasNext", "(", ")", ")", "{", "Object", "obj", "=", "getObjectFromResultSet", "(", ")", ";", "m_current_row", "++", ";", "// Invoke events on PersistenceBrokerAware instances and listeners\r", "// set target object\r", "if", "(", "!", "disableLifeCycleEvents", ")", "{", "getAfterLookupEvent", "(", ")", ".", "setTarget", "(", "obj", ")", ";", "getBroker", "(", ")", ".", "fireBrokerEvent", "(", "getAfterLookupEvent", "(", ")", ")", ";", "getAfterLookupEvent", "(", ")", ".", "setTarget", "(", "null", ")", ";", "}", "return", "obj", ";", "}", "else", "{", "throw", "new", "NoSuchElementException", "(", "\"inner hasNext was false\"", ")", ";", "}", "}", "catch", "(", "ResourceClosedException", "ex", ")", "{", "autoReleaseDbResources", "(", ")", ";", "throw", "ex", ";", "}", "catch", "(", "NoSuchElementException", "ex", ")", "{", "autoReleaseDbResources", "(", ")", ";", "logger", ".", "error", "(", "\"Error while iterate ResultSet for query \"", "+", "m_queryObject", ",", "ex", ")", ";", "throw", "new", "NoSuchElementException", "(", "\"Could not obtain next object: \"", "+", "ex", ".", "getMessage", "(", ")", ")", ";", "}", "}" ]
moves to the next row of the underlying ResultSet and returns the corresponding Object materialized from this row.
[ "moves", "to", "the", "next", "row", "of", "the", "underlying", "ResultSet", "and", "returns", "the", "corresponding", "Object", "materialized", "from", "this", "row", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/accesslayer/RsIterator.java#L267-L307
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/accesslayer/RsIterator.java
RsIterator.getOwnerObjects
private Collection getOwnerObjects() { Collection owners = new Vector(); while (hasNext()) { owners.add(next()); } return owners; }
java
private Collection getOwnerObjects() { Collection owners = new Vector(); while (hasNext()) { owners.add(next()); } return owners; }
[ "private", "Collection", "getOwnerObjects", "(", ")", "{", "Collection", "owners", "=", "new", "Vector", "(", ")", ";", "while", "(", "hasNext", "(", ")", ")", "{", "owners", ".", "add", "(", "next", "(", ")", ")", ";", "}", "return", "owners", ";", "}" ]
read all objects of this iterator. objects will be placed in cache
[ "read", "all", "objects", "of", "this", "iterator", ".", "objects", "will", "be", "placed", "in", "cache" ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/accesslayer/RsIterator.java#L320-L328
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/accesslayer/RsIterator.java
RsIterator.prefetchRelationships
private void prefetchRelationships(Query query) { List prefetchedRel; Collection owners; String relName; RelationshipPrefetcher[] prefetchers; if (query == null || query.getPrefetchedRelationships() == null || query.getPrefetchedRelationships().isEmpty()) { return; } if (!supportsAdvancedJDBCCursorControl()) { logger.info("prefetching relationships requires JDBC level 2.0"); return; } // prevent releasing of DBResources setInBatchedMode(true); prefetchedRel = query.getPrefetchedRelationships(); prefetchers = new RelationshipPrefetcher[prefetchedRel.size()]; // disable auto retrieve for all prefetched relationships for (int i = 0; i < prefetchedRel.size(); i++) { relName = (String) prefetchedRel.get(i); prefetchers[i] = getBroker().getRelationshipPrefetcherFactory() .createRelationshipPrefetcher(getQueryObject().getClassDescriptor(), relName); prefetchers[i].prepareRelationshipSettings(); } // materialize ALL owners of this Iterator owners = getOwnerObjects(); // prefetch relationships and associate with owners for (int i = 0; i < prefetchedRel.size(); i++) { prefetchers[i].prefetchRelationship(owners); } // reset auto retrieve for all prefetched relationships for (int i = 0; i < prefetchedRel.size(); i++) { prefetchers[i].restoreRelationshipSettings(); } try { getRsAndStmt().m_rs.beforeFirst(); // reposition resultset jdbc 2.0 } catch (SQLException e) { logger.error("beforeFirst failed !", e); } setInBatchedMode(false); setHasCalledCheck(false); }
java
private void prefetchRelationships(Query query) { List prefetchedRel; Collection owners; String relName; RelationshipPrefetcher[] prefetchers; if (query == null || query.getPrefetchedRelationships() == null || query.getPrefetchedRelationships().isEmpty()) { return; } if (!supportsAdvancedJDBCCursorControl()) { logger.info("prefetching relationships requires JDBC level 2.0"); return; } // prevent releasing of DBResources setInBatchedMode(true); prefetchedRel = query.getPrefetchedRelationships(); prefetchers = new RelationshipPrefetcher[prefetchedRel.size()]; // disable auto retrieve for all prefetched relationships for (int i = 0; i < prefetchedRel.size(); i++) { relName = (String) prefetchedRel.get(i); prefetchers[i] = getBroker().getRelationshipPrefetcherFactory() .createRelationshipPrefetcher(getQueryObject().getClassDescriptor(), relName); prefetchers[i].prepareRelationshipSettings(); } // materialize ALL owners of this Iterator owners = getOwnerObjects(); // prefetch relationships and associate with owners for (int i = 0; i < prefetchedRel.size(); i++) { prefetchers[i].prefetchRelationship(owners); } // reset auto retrieve for all prefetched relationships for (int i = 0; i < prefetchedRel.size(); i++) { prefetchers[i].restoreRelationshipSettings(); } try { getRsAndStmt().m_rs.beforeFirst(); // reposition resultset jdbc 2.0 } catch (SQLException e) { logger.error("beforeFirst failed !", e); } setInBatchedMode(false); setHasCalledCheck(false); }
[ "private", "void", "prefetchRelationships", "(", "Query", "query", ")", "{", "List", "prefetchedRel", ";", "Collection", "owners", ";", "String", "relName", ";", "RelationshipPrefetcher", "[", "]", "prefetchers", ";", "if", "(", "query", "==", "null", "||", "query", ".", "getPrefetchedRelationships", "(", ")", "==", "null", "||", "query", ".", "getPrefetchedRelationships", "(", ")", ".", "isEmpty", "(", ")", ")", "{", "return", ";", "}", "if", "(", "!", "supportsAdvancedJDBCCursorControl", "(", ")", ")", "{", "logger", ".", "info", "(", "\"prefetching relationships requires JDBC level 2.0\"", ")", ";", "return", ";", "}", "// prevent releasing of DBResources\r", "setInBatchedMode", "(", "true", ")", ";", "prefetchedRel", "=", "query", ".", "getPrefetchedRelationships", "(", ")", ";", "prefetchers", "=", "new", "RelationshipPrefetcher", "[", "prefetchedRel", ".", "size", "(", ")", "]", ";", "// disable auto retrieve for all prefetched relationships\r", "for", "(", "int", "i", "=", "0", ";", "i", "<", "prefetchedRel", ".", "size", "(", ")", ";", "i", "++", ")", "{", "relName", "=", "(", "String", ")", "prefetchedRel", ".", "get", "(", "i", ")", ";", "prefetchers", "[", "i", "]", "=", "getBroker", "(", ")", ".", "getRelationshipPrefetcherFactory", "(", ")", ".", "createRelationshipPrefetcher", "(", "getQueryObject", "(", ")", ".", "getClassDescriptor", "(", ")", ",", "relName", ")", ";", "prefetchers", "[", "i", "]", ".", "prepareRelationshipSettings", "(", ")", ";", "}", "// materialize ALL owners of this Iterator\r", "owners", "=", "getOwnerObjects", "(", ")", ";", "// prefetch relationships and associate with owners\r", "for", "(", "int", "i", "=", "0", ";", "i", "<", "prefetchedRel", ".", "size", "(", ")", ";", "i", "++", ")", "{", "prefetchers", "[", "i", "]", ".", "prefetchRelationship", "(", "owners", ")", ";", "}", "// reset auto retrieve for all prefetched relationships\r", "for", "(", "int", "i", "=", "0", ";", "i", "<", "prefetchedRel", ".", "size", "(", ")", ";", "i", "++", ")", "{", "prefetchers", "[", "i", "]", ".", "restoreRelationshipSettings", "(", ")", ";", "}", "try", "{", "getRsAndStmt", "(", ")", ".", "m_rs", ".", "beforeFirst", "(", ")", ";", "// reposition resultset jdbc 2.0\r", "}", "catch", "(", "SQLException", "e", ")", "{", "logger", ".", "error", "(", "\"beforeFirst failed !\"", ",", "e", ")", ";", "}", "setInBatchedMode", "(", "false", ")", ";", "setHasCalledCheck", "(", "false", ")", ";", "}" ]
prefetch defined relationships requires JDBC level 2.0, does not work with Arrays
[ "prefetch", "defined", "relationships", "requires", "JDBC", "level", "2", ".", "0", "does", "not", "work", "with", "Arrays" ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/accesslayer/RsIterator.java#L334-L393
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/accesslayer/RsIterator.java
RsIterator.getProxyFromResultSet
protected Object getProxyFromResultSet() throws PersistenceBrokerException { // 1. get Identity of current row: Identity oid = getIdentityFromResultSet(); // 2. return a Proxy instance: return getBroker().createProxy(getItemProxyClass(), oid); }
java
protected Object getProxyFromResultSet() throws PersistenceBrokerException { // 1. get Identity of current row: Identity oid = getIdentityFromResultSet(); // 2. return a Proxy instance: return getBroker().createProxy(getItemProxyClass(), oid); }
[ "protected", "Object", "getProxyFromResultSet", "(", ")", "throws", "PersistenceBrokerException", "{", "// 1. get Identity of current row:\r", "Identity", "oid", "=", "getIdentityFromResultSet", "(", ")", ";", "// 2. return a Proxy instance:\r", "return", "getBroker", "(", ")", ".", "createProxy", "(", "getItemProxyClass", "(", ")", ",", "oid", ")", ";", "}" ]
Reads primary key information from current RS row and generates a corresponding Identity, and returns a proxy from the Identity. @throws PersistenceBrokerException if there was an error creating the proxy class
[ "Reads", "primary", "key", "information", "from", "current", "RS", "row", "and", "generates", "a" ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/accesslayer/RsIterator.java#L526-L533
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/accesslayer/RsIterator.java
RsIterator.countedSize
protected int countedSize() throws PersistenceBrokerException { Query countQuery = getBroker().serviceBrokerHelper().getCountQuery(getQueryObject().getQuery()); ResultSetAndStatement rsStmt; ClassDescriptor cld = getQueryObject().getClassDescriptor(); int count = 0; // BRJ: do not use broker.getCount() because it's extent-aware // the count we need here must not include extents ! if (countQuery instanceof QueryBySQL) { String countSql = ((QueryBySQL) countQuery).getSql(); rsStmt = getBroker().serviceJdbcAccess().executeSQL(countSql, cld, Query.NOT_SCROLLABLE); } else { rsStmt = getBroker().serviceJdbcAccess().executeQuery(countQuery, cld); } try { if (rsStmt.m_rs.next()) { count = rsStmt.m_rs.getInt(1); } } catch (SQLException e) { throw new PersistenceBrokerException(e); } finally { rsStmt.close(); } return count; }
java
protected int countedSize() throws PersistenceBrokerException { Query countQuery = getBroker().serviceBrokerHelper().getCountQuery(getQueryObject().getQuery()); ResultSetAndStatement rsStmt; ClassDescriptor cld = getQueryObject().getClassDescriptor(); int count = 0; // BRJ: do not use broker.getCount() because it's extent-aware // the count we need here must not include extents ! if (countQuery instanceof QueryBySQL) { String countSql = ((QueryBySQL) countQuery).getSql(); rsStmt = getBroker().serviceJdbcAccess().executeSQL(countSql, cld, Query.NOT_SCROLLABLE); } else { rsStmt = getBroker().serviceJdbcAccess().executeQuery(countQuery, cld); } try { if (rsStmt.m_rs.next()) { count = rsStmt.m_rs.getInt(1); } } catch (SQLException e) { throw new PersistenceBrokerException(e); } finally { rsStmt.close(); } return count; }
[ "protected", "int", "countedSize", "(", ")", "throws", "PersistenceBrokerException", "{", "Query", "countQuery", "=", "getBroker", "(", ")", ".", "serviceBrokerHelper", "(", ")", ".", "getCountQuery", "(", "getQueryObject", "(", ")", ".", "getQuery", "(", ")", ")", ";", "ResultSetAndStatement", "rsStmt", ";", "ClassDescriptor", "cld", "=", "getQueryObject", "(", ")", ".", "getClassDescriptor", "(", ")", ";", "int", "count", "=", "0", ";", "// BRJ: do not use broker.getCount() because it's extent-aware\r", "// the count we need here must not include extents !\r", "if", "(", "countQuery", "instanceof", "QueryBySQL", ")", "{", "String", "countSql", "=", "(", "(", "QueryBySQL", ")", "countQuery", ")", ".", "getSql", "(", ")", ";", "rsStmt", "=", "getBroker", "(", ")", ".", "serviceJdbcAccess", "(", ")", ".", "executeSQL", "(", "countSql", ",", "cld", ",", "Query", ".", "NOT_SCROLLABLE", ")", ";", "}", "else", "{", "rsStmt", "=", "getBroker", "(", ")", ".", "serviceJdbcAccess", "(", ")", ".", "executeQuery", "(", "countQuery", ",", "cld", ")", ";", "}", "try", "{", "if", "(", "rsStmt", ".", "m_rs", ".", "next", "(", ")", ")", "{", "count", "=", "rsStmt", ".", "m_rs", ".", "getInt", "(", "1", ")", ";", "}", "}", "catch", "(", "SQLException", "e", ")", "{", "throw", "new", "PersistenceBrokerException", "(", "e", ")", ";", "}", "finally", "{", "rsStmt", ".", "close", "(", ")", ";", "}", "return", "count", ";", "}" ]
Answer the counted size @return int
[ "Answer", "the", "counted", "size" ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/accesslayer/RsIterator.java#L556-L592
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/accesslayer/RsIterator.java
RsIterator.absolute
public boolean absolute(int row) throws PersistenceBrokerException { boolean retval; if (supportsAdvancedJDBCCursorControl()) { retval = absoluteAdvanced(row); } else { retval = absoluteBasic(row); } return retval; }
java
public boolean absolute(int row) throws PersistenceBrokerException { boolean retval; if (supportsAdvancedJDBCCursorControl()) { retval = absoluteAdvanced(row); } else { retval = absoluteBasic(row); } return retval; }
[ "public", "boolean", "absolute", "(", "int", "row", ")", "throws", "PersistenceBrokerException", "{", "boolean", "retval", ";", "if", "(", "supportsAdvancedJDBCCursorControl", "(", ")", ")", "{", "retval", "=", "absoluteAdvanced", "(", "row", ")", ";", "}", "else", "{", "retval", "=", "absoluteBasic", "(", "row", ")", ";", "}", "return", "retval", ";", "}" ]
Moves the cursor to the given row number in the iterator. If the row number is positive, the cursor moves to the given row number with respect to the beginning of the iterator. The first row is row 1, the second is row 2, and so on. @param row the row to move to in this iterator, by absolute number
[ "Moves", "the", "cursor", "to", "the", "given", "row", "number", "in", "the", "iterator", ".", "If", "the", "row", "number", "is", "positive", "the", "cursor", "moves", "to", "the", "given", "row", "number", "with", "respect", "to", "the", "beginning", "of", "the", "iterator", ".", "The", "first", "row", "is", "row", "1", "the", "second", "is", "row", "2", "and", "so", "on", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/accesslayer/RsIterator.java#L680-L692
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/accesslayer/RsIterator.java
RsIterator.absoluteBasic
private boolean absoluteBasic(int row) { boolean retval = false; if (row > m_current_row) { try { while (m_current_row < row && getRsAndStmt().m_rs.next()) { m_current_row++; } if (m_current_row == row) { retval = true; } else { setHasCalledCheck(true); setHasNext(false); retval = false; autoReleaseDbResources(); } } catch (Exception ex) { setHasCalledCheck(true); setHasNext(false); retval = false; } } else { logger.info("Your driver does not support advanced JDBC Functionality, " + "you cannot call absolute() with a position < current"); } return retval; }
java
private boolean absoluteBasic(int row) { boolean retval = false; if (row > m_current_row) { try { while (m_current_row < row && getRsAndStmt().m_rs.next()) { m_current_row++; } if (m_current_row == row) { retval = true; } else { setHasCalledCheck(true); setHasNext(false); retval = false; autoReleaseDbResources(); } } catch (Exception ex) { setHasCalledCheck(true); setHasNext(false); retval = false; } } else { logger.info("Your driver does not support advanced JDBC Functionality, " + "you cannot call absolute() with a position < current"); } return retval; }
[ "private", "boolean", "absoluteBasic", "(", "int", "row", ")", "{", "boolean", "retval", "=", "false", ";", "if", "(", "row", ">", "m_current_row", ")", "{", "try", "{", "while", "(", "m_current_row", "<", "row", "&&", "getRsAndStmt", "(", ")", ".", "m_rs", ".", "next", "(", ")", ")", "{", "m_current_row", "++", ";", "}", "if", "(", "m_current_row", "==", "row", ")", "{", "retval", "=", "true", ";", "}", "else", "{", "setHasCalledCheck", "(", "true", ")", ";", "setHasNext", "(", "false", ")", ";", "retval", "=", "false", ";", "autoReleaseDbResources", "(", ")", ";", "}", "}", "catch", "(", "Exception", "ex", ")", "{", "setHasCalledCheck", "(", "true", ")", ";", "setHasNext", "(", "false", ")", ";", "retval", "=", "false", ";", "}", "}", "else", "{", "logger", ".", "info", "(", "\"Your driver does not support advanced JDBC Functionality, \"", "+", "\"you cannot call absolute() with a position < current\"", ")", ";", "}", "return", "retval", ";", "}" ]
absolute for basicJDBCSupport @param row
[ "absolute", "for", "basicJDBCSupport" ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/accesslayer/RsIterator.java#L698-L735
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/accesslayer/RsIterator.java
RsIterator.absoluteAdvanced
private boolean absoluteAdvanced(int row) { boolean retval = false; try { if (getRsAndStmt().m_rs != null) { if (row == 0) { getRsAndStmt().m_rs.beforeFirst(); } else { retval = getRsAndStmt().m_rs.absolute(row); } m_current_row = row; setHasCalledCheck(false); } } catch (SQLException e) { advancedJDBCSupport = false; } return retval; }
java
private boolean absoluteAdvanced(int row) { boolean retval = false; try { if (getRsAndStmt().m_rs != null) { if (row == 0) { getRsAndStmt().m_rs.beforeFirst(); } else { retval = getRsAndStmt().m_rs.absolute(row); } m_current_row = row; setHasCalledCheck(false); } } catch (SQLException e) { advancedJDBCSupport = false; } return retval; }
[ "private", "boolean", "absoluteAdvanced", "(", "int", "row", ")", "{", "boolean", "retval", "=", "false", ";", "try", "{", "if", "(", "getRsAndStmt", "(", ")", ".", "m_rs", "!=", "null", ")", "{", "if", "(", "row", "==", "0", ")", "{", "getRsAndStmt", "(", ")", ".", "m_rs", ".", "beforeFirst", "(", ")", ";", "}", "else", "{", "retval", "=", "getRsAndStmt", "(", ")", ".", "m_rs", ".", "absolute", "(", "row", ")", ";", "}", "m_current_row", "=", "row", ";", "setHasCalledCheck", "(", "false", ")", ";", "}", "}", "catch", "(", "SQLException", "e", ")", "{", "advancedJDBCSupport", "=", "false", ";", "}", "return", "retval", ";", "}" ]
absolute for advancedJDBCSupport @param row
[ "absolute", "for", "advancedJDBCSupport" ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/accesslayer/RsIterator.java#L741-L766
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/util/logging/CommonsLoggerImpl.java
CommonsLoggerImpl.safeToString
private String safeToString(Object obj) { String toString = null; if (obj != null) { try { toString = obj.toString(); } catch (Throwable ex) { toString = "BAD toString() impl for " + obj.getClass().getName(); } } return toString; }
java
private String safeToString(Object obj) { String toString = null; if (obj != null) { try { toString = obj.toString(); } catch (Throwable ex) { toString = "BAD toString() impl for " + obj.getClass().getName(); } } return toString; }
[ "private", "String", "safeToString", "(", "Object", "obj", ")", "{", "String", "toString", "=", "null", ";", "if", "(", "obj", "!=", "null", ")", "{", "try", "{", "toString", "=", "obj", ".", "toString", "(", ")", ";", "}", "catch", "(", "Throwable", "ex", ")", "{", "toString", "=", "\"BAD toString() impl for \"", "+", "obj", ".", "getClass", "(", ")", ".", "getName", "(", ")", ";", "}", "}", "return", "toString", ";", "}" ]
provides a safe toString
[ "provides", "a", "safe", "toString" ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/util/logging/CommonsLoggerImpl.java#L299-L314
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/metadata/ClassDescriptor.java
ClassDescriptor.setRowReader
public void setRowReader(String newReaderClassName) { try { m_rowReader = (RowReader) ClassHelper.newInstance( newReaderClassName, ClassDescriptor.class, this); } catch (Exception e) { throw new MetadataException("Instantiating of current set RowReader failed", e); } }
java
public void setRowReader(String newReaderClassName) { try { m_rowReader = (RowReader) ClassHelper.newInstance( newReaderClassName, ClassDescriptor.class, this); } catch (Exception e) { throw new MetadataException("Instantiating of current set RowReader failed", e); } }
[ "public", "void", "setRowReader", "(", "String", "newReaderClassName", ")", "{", "try", "{", "m_rowReader", "=", "(", "RowReader", ")", "ClassHelper", ".", "newInstance", "(", "newReaderClassName", ",", "ClassDescriptor", ".", "class", ",", "this", ")", ";", "}", "catch", "(", "Exception", "e", ")", "{", "throw", "new", "MetadataException", "(", "\"Instantiating of current set RowReader failed\"", ",", "e", ")", ";", "}", "}" ]
sets the row reader class name for thie class descriptor
[ "sets", "the", "row", "reader", "class", "name", "for", "thie", "class", "descriptor" ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/metadata/ClassDescriptor.java#L356-L370
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/metadata/ClassDescriptor.java
ClassDescriptor.setClassOfObject
public void setClassOfObject(Class c) { m_Class = c; isAbstract = Modifier.isAbstract(m_Class.getModifiers()); // TODO : Shouldn't the HashMap in DescriptorRepository be updated as well? }
java
public void setClassOfObject(Class c) { m_Class = c; isAbstract = Modifier.isAbstract(m_Class.getModifiers()); // TODO : Shouldn't the HashMap in DescriptorRepository be updated as well? }
[ "public", "void", "setClassOfObject", "(", "Class", "c", ")", "{", "m_Class", "=", "c", ";", "isAbstract", "=", "Modifier", ".", "isAbstract", "(", "m_Class", ".", "getModifiers", "(", ")", ")", ";", "// TODO : Shouldn't the HashMap in DescriptorRepository be updated as well?\r", "}" ]
sets the class object described by this descriptor. @param c the class to describe
[ "sets", "the", "class", "object", "described", "by", "this", "descriptor", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/metadata/ClassDescriptor.java#L399-L404
train
kuali/ojb-1.0.4
src/java/org/apache/ojb/broker/metadata/ClassDescriptor.java
ClassDescriptor.addFieldDescriptor
public void addFieldDescriptor(FieldDescriptor fld) { fld.setClassDescriptor(this); // BRJ if (m_FieldDescriptions == null) { m_FieldDescriptions = new FieldDescriptor[1]; m_FieldDescriptions[0] = fld; } else { int size = m_FieldDescriptions.length; FieldDescriptor[] tmpArray = new FieldDescriptor[size + 1]; System.arraycopy(m_FieldDescriptions, 0, tmpArray, 0, size); tmpArray[size] = fld; m_FieldDescriptions = tmpArray; // 2. Sort fields according to their getOrder() Property Arrays.sort(m_FieldDescriptions, FieldDescriptor.getComparator()); } m_fieldDescriptorNameMap = null; m_PkFieldDescriptors = null; m_nonPkFieldDescriptors = null; m_lockingFieldDescriptors = null; m_RwFieldDescriptors = null; m_RwNonPkFieldDescriptors = null; }
java
public void addFieldDescriptor(FieldDescriptor fld) { fld.setClassDescriptor(this); // BRJ if (m_FieldDescriptions == null) { m_FieldDescriptions = new FieldDescriptor[1]; m_FieldDescriptions[0] = fld; } else { int size = m_FieldDescriptions.length; FieldDescriptor[] tmpArray = new FieldDescriptor[size + 1]; System.arraycopy(m_FieldDescriptions, 0, tmpArray, 0, size); tmpArray[size] = fld; m_FieldDescriptions = tmpArray; // 2. Sort fields according to their getOrder() Property Arrays.sort(m_FieldDescriptions, FieldDescriptor.getComparator()); } m_fieldDescriptorNameMap = null; m_PkFieldDescriptors = null; m_nonPkFieldDescriptors = null; m_lockingFieldDescriptors = null; m_RwFieldDescriptors = null; m_RwNonPkFieldDescriptors = null; }
[ "public", "void", "addFieldDescriptor", "(", "FieldDescriptor", "fld", ")", "{", "fld", ".", "setClassDescriptor", "(", "this", ")", ";", "// BRJ\r", "if", "(", "m_FieldDescriptions", "==", "null", ")", "{", "m_FieldDescriptions", "=", "new", "FieldDescriptor", "[", "1", "]", ";", "m_FieldDescriptions", "[", "0", "]", "=", "fld", ";", "}", "else", "{", "int", "size", "=", "m_FieldDescriptions", ".", "length", ";", "FieldDescriptor", "[", "]", "tmpArray", "=", "new", "FieldDescriptor", "[", "size", "+", "1", "]", ";", "System", ".", "arraycopy", "(", "m_FieldDescriptions", ",", "0", ",", "tmpArray", ",", "0", ",", "size", ")", ";", "tmpArray", "[", "size", "]", "=", "fld", ";", "m_FieldDescriptions", "=", "tmpArray", ";", "// 2. Sort fields according to their getOrder() Property\r", "Arrays", ".", "sort", "(", "m_FieldDescriptions", ",", "FieldDescriptor", ".", "getComparator", "(", ")", ")", ";", "}", "m_fieldDescriptorNameMap", "=", "null", ";", "m_PkFieldDescriptors", "=", "null", ";", "m_nonPkFieldDescriptors", "=", "null", ";", "m_lockingFieldDescriptors", "=", "null", ";", "m_RwFieldDescriptors", "=", "null", ";", "m_RwNonPkFieldDescriptors", "=", "null", ";", "}" ]
adds a FIELDDESCRIPTOR to this ClassDescriptor. @param fld
[ "adds", "a", "FIELDDESCRIPTOR", "to", "this", "ClassDescriptor", "." ]
9a544372f67ce965f662cdc71609dd03683c8f04
https://github.com/kuali/ojb-1.0.4/blob/9a544372f67ce965f662cdc71609dd03683c8f04/src/java/org/apache/ojb/broker/metadata/ClassDescriptor.java#L410-L435
train