Searched defs:operand (Results 1 - 5 of 5) sorted by relevance

/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/embedded/admin/
H A DCommandParameters.java57 * Sets the command primary (operand) parameter.
58 * @param operand the command operand
60 public void setOperand(String operand) { argument
62 operands.add(operand);
66 * Adds a command primary (operand) parameter.
67 * @param operand the command operand
69 public void addOperand(String operand) { argument
70 operands.add(operand);
[all...]
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/util/webservice/
H A DWsCompileInvoker.java130 * For options that dont have an operand, the second argument can be null; for example, to invoke the wscompile tool
133 * @param String operand the operand for the option; null if none;
135 public void addWsCompileOption(String option, String operand) { argument
138 wsCompileOptions.put(option, operand);
158 * This will prefix -f: to the feature and set it as part of the options Map with operand being null
/glassfish-3.1.2/tests/quicklook/admin/src/test/admin/util/
H A DGeneralUtils.java84 * @param operand
87 public static String toFinalURL(String adminUrl, String cmd, Map<String, String>options, String operand) { argument
95 boolean operandPresent = (operand != null);
108 buffer.append(encodePair("DEFAULT", operand));
111 if(buffer.charAt(len-1) == '?' || buffer.charAt(len-1) == '&') { //remove last '&'/'?' if there is no operand
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/
H A DListCommandDescriptorsCommand.java112 StringBuffer operand = new StringBuffer();
130 operand.append("[").append(paramName).append("] ");
133 operand.append(paramName).append(" ");
171 usageText.append(operand);
237 operand = p.primary();
246 " operand=" + operand +
253 private boolean operand; field in class:ListCommandDescriptorsCommand.Option
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/classfile/
H A DInsnConstOp.java48 * pool as an immediate operand
187 * Return the constant pool entry which is the immediate operand
251 private void checkConstant (ConstBasic operand) { argument
257 if (operand == null ||
258 (! (operand instanceof ConstValue)))
260 " without a ConstValue operand");//NOI18N
268 if (operand == null ||
269 (! (operand instanceof ConstFieldRef)))
271 " without a ConstFieldRef operand");//NOI18N
278 if (operand
[all...]

Completed in 26 milliseconds