512513514515516517518519520521522
m_formatSpecification = new PatternRun[ elementCount ]; for( int i = 0; i < elementCount; i++ ) { m_formatSpecification[ i ] = (PatternRun) stack.elementAt( i ); } } /** * Set the string description that the format is extracted from.
758759760761762763764765766767768
if (i > 1) { // not before the filesystem root and not after it, since root // already contains one sb.append(File.separatorChar); } sb.append(s.elementAt(i)); } return new File(sb.toString()); } /**
827828829830831832833834835836837
if (i > 1) { // not before the filesystem root and not after it, since root // already contains one sb.append(File.separatorChar); } sb.append(s.elementAt(i)); } path = sb.toString(); if (dosWithDrive) { path = path.replace('/', '\\'); }
675676677678679680681682683684
m_formatSpecification = new PatternRun[ elementCount ]; for( int i = 0; i < elementCount; i++ ) { m_formatSpecification[ i ] = (PatternRun)stack.elementAt( i ); } } }
553554555556557558559560561562563
278279280281282283284285286287288
Hashtable attributes = new Hashtable(17); String victimXID = null; for (int i = 0; i < chain.size(); i++) { Object space = chain.elementAt(i); if (space instanceof List) { List grants = (List) space; if (grants.size() != 0) {
757758759760761762763764765766767
274275276277278279280281282283284
{ frame = allocateCurrentFrame(); } for (int i = (frame.size() - 1); i >= 0; i--) { Arg arg = (Arg)frame.elementAt(i); if(arg.getQName().equals(qname) && arg.isParamVar()) { frame.setElementAt(new Arg(qname, xval), i); return; }
294295296297298299300301302303304
{ Stack frame = getCurrentFrame(); for (int i = (frame.size() - 1); i >= 0; i--) { Arg arg = (Arg)frame.elementAt(i); arg.setIsParamVar(true); } }
349350351352353354355356357358359
Stack frame = getCurrentFrame(); for (int i = (frame.size() - 1); i >= 0; i--) { Object obj = frame.elementAt(i); if (((Arg) obj).getQName().equals(qname)) { return true; }