bugged
stringlengths
6
599k
fixed
stringlengths
6
40.8M
__index_level_0__
int64
0
3.24M
public void visitGVarNode(GVarNode iVisited) { iVisited.accept(_Payload); }
public void visitGVarNode(GVarNode iVisited) { iVisited.accept(_Payload); }
3,238,221
public void visitHashNode(HashNode iVisited) { iVisited.accept(_Payload); }
public void visitHashNode(HashNode iVisited) { iVisited.accept(_Payload); }
3,238,222
public void visitIAsgnNode(IAsgnNode iVisited) { iVisited.accept(_Payload); iVisited.getValueNode().accept(this); }
public void visitIAsgnNode(IAsgnNode iVisited) { iVisited.accept(_Payload); iVisited.getValueNode().accept(this); }
3,238,223
public void visitIFuncNode(IFuncNode iVisited) { iVisited.accept(_Payload); }
public void visitIFuncNode(IFuncNode iVisited) { iVisited.accept(_Payload); }
3,238,224
public void visitIVarNode(IVarNode iVisited) { iVisited.accept(_Payload); }
public void visitIVarNode(IVarNode iVisited) { iVisited.accept(_Payload); }
3,238,225
public void visitIfNode(IfNode iVisited) { iVisited.accept(_Payload); iVisited.getConditionNode().accept(this); iVisited.getBodyNode().accept(this); Node lElseNode = iVisited.getElseNode(); if (lElseNode != null) iVisited.getElseNode().accept(this); }
public void visitIfNode(IfNode iVisited) { iVisited.accept(_Payload); iVisited.getConditionNode().accept(this); iVisited.getBodyNode().accept(this); Node lElseNode = iVisited.getElseNode(); if (lElseNode != null) iVisited.getElseNode().accept(this); }
3,238,226
public void visitIterNode(IterNode iVisited) { iVisited.accept(_Payload); }
public void visitIterNode(IterNode iVisited) { iVisited.accept(_Payload); }
3,238,227
public void visitLAsgnNode(LAsgnNode iVisited) { iVisited.accept(_Payload); iVisited.getValueNode().accept(this); }
public void visitLAsgnNode(LAsgnNode iVisited) { iVisited.accept(_Payload); iVisited.getValueNode().accept(this); }
3,238,228
public void visitLVarNode(LVarNode iVisited) { iVisited.accept(_Payload); }
public void visitLVarNode(LVarNode iVisited) { iVisited.accept(_Payload); }
3,238,229
public void visitLitNode(LitNode iVisited) { iVisited.accept(_Payload); }
public void visitLitNode(LitNode iVisited) { iVisited.accept(_Payload); }
3,238,230
public void visitMAsgnNode(MAsgnNode iVisited) { iVisited.accept(_Payload); }
public void visitMAsgnNode(MAsgnNode iVisited) { iVisited.accept(_Payload); }
3,238,231
public void visitMatch2Node(Match2Node iVisited) { iVisited.accept(_Payload); }
public void visitMatch2Node(Match2Node iVisited) { iVisited.accept(_Payload); }
3,238,232
public void visitMatch3Node(Match3Node iVisited) { iVisited.accept(_Payload); }
public void visitMatch3Node(Match3Node iVisited) { iVisited.accept(_Payload); }
3,238,233
public void visitMatchNode(MatchNode iVisited) { iVisited.accept(_Payload); }
public void visitMatchNode(MatchNode iVisited) { iVisited.accept(_Payload); }
3,238,234
public void visitMethodNode(MethodNode iVisited) { iVisited.accept(_Payload); }
public void visitMethodNode(MethodNode iVisited) { iVisited.accept(_Payload); }
3,238,235
public void visitModuleNode(ModuleNode iVisited) { iVisited.accept(_Payload); }
public void visitModuleNode(ModuleNode iVisited) { iVisited.accept(_Payload); }
3,238,236
public void visitNewlineNode(NewlineNode iVisited) { iVisited.accept(_Payload); iVisited.getNextNode().accept(this); }
public void visitNewlineNode(NewlineNode iVisited) { iVisited.accept(_Payload); iVisited.getNextNode().accept(this); }
3,238,237
public void visitNextNode(NextNode iVisited) { iVisited.accept(_Payload); }
public void visitNextNode(NextNode iVisited) { iVisited.accept(_Payload); }
3,238,238
public void visitNilNode(NilNode iVisited) { iVisited.accept(_Payload); }
public void visitNilNode(NilNode iVisited) { iVisited.accept(_Payload); }
3,238,239
public void visitNotNode(NotNode iVisited) { iVisited.accept(_Payload); iVisited.getBodyNode().accept(this); }
public void visitNotNode(NotNode iVisited) { iVisited.accept(_Payload); iVisited.getBodyNode().accept(this); }
3,238,240
public void visitNthRefNode(NthRefNode iVisited) { iVisited.accept(_Payload); }
public void visitNthRefNode(NthRefNode iVisited) { iVisited.accept(_Payload); }
3,238,241
public void visitOpAsgn1Node(OpAsgn1Node iVisited) { iVisited.accept(_Payload); }
public void visitOpAsgn1Node(OpAsgn1Node iVisited) { iVisited.accept(_Payload); }
3,238,242
public void visitOpAsgn2Node(OpAsgn2Node iVisited) { iVisited.accept(_Payload); }
public void visitOpAsgn2Node(OpAsgn2Node iVisited) { iVisited.accept(_Payload); }
3,238,243
public void visitOpAsgnAndNode(OpAsgnAndNode iVisited) { iVisited.accept(_Payload); }
public void visitOpAsgnAndNode(OpAsgnAndNode iVisited) { iVisited.accept(_Payload); }
3,238,244
public void visitOpAsgnOrNode(OpAsgnOrNode iVisited) { iVisited.accept(_Payload); }
public void visitOpAsgnOrNode(OpAsgnOrNode iVisited) { iVisited.accept(_Payload); }
3,238,245
public void visitOptNNode(OptNNode iVisited) { iVisited.accept(_Payload); iVisited.getBodyNode().accept(this); }
public void visitOptNNode(OptNNode iVisited) { iVisited.accept(_Payload); iVisited.getBodyNode().accept(this); }
3,238,246
public void visitOrNode(OrNode iVisited) { iVisited.getFirstNode().accept(this); iVisited.accept(_Payload); iVisited.getSecondNode().accept(this); }
public void visitOrNode(OrNode iVisited) { iVisited.getFirstNode().accept(this); iVisited.accept(_Payload); iVisited.getSecondNode().accept(this); }
3,238,247
public void visitPostExeNode(PostExeNode iVisited) { iVisited.accept(_Payload); }
public void visitPostExeNode(PostExeNode iVisited) { iVisited.accept(_Payload); }
3,238,248
public void visitRedoNode(RedoNode iVisited) { iVisited.accept(_Payload); }
public void visitRedoNode(RedoNode iVisited) { iVisited.accept(_Payload); }
3,238,249
public void visitRescueBodyNode(RescueBodyNode iVisited) { iVisited.accept(_Payload); iVisited.getBodyNode().accept(this); }
public void visitRescueBodyNode(RescueBodyNode iVisited) { iVisited.accept(_Payload); iVisited.getBodyNode().accept(this); }
3,238,250
public void visitRescueNode(RescueNode iVisited) { iVisited.accept(_Payload); iVisited.getHeadNode().accept(this); Node lElseNode = iVisited.getElseNode(); if (lElseNode != null) lElseNode.accept(this); for(Node body = iVisited.getResqNode(); body != null; body = iVisited.getHeadNode()) { Node lArgsNode = bo...
public void visitRescueNode(RescueNode iVisited) { iVisited.accept(_Payload); iVisited.getHeadNode().accept(this); Node lElseNode = iVisited.getElseNode(); if (lElseNode != null) lElseNode.accept(this); for(Node body = iVisited.getResqNode(); body != null; body = iVisited.getHeadNode()) { Node lArgsNode = bo...
3,238,251
public void visitRestArgsNode(RestArgsNode iVisited) { iVisited.accept(_Payload); }
public void visitRestArgsNode(RestArgsNode iVisited) { iVisited.accept(_Payload); }
3,238,252
public void visitRetryNode(RetryNode iVisited) { iVisited.accept(_Payload); }
public void visitRetryNode(RetryNode iVisited) { iVisited.accept(_Payload); }
3,238,253
public void visitReturnNode(ReturnNode iVisited) { iVisited.accept(_Payload); }
public void visitReturnNode(ReturnNode iVisited) { iVisited.accept(_Payload); }
3,238,254
public void visitSClassNode(SClassNode iVisited) { iVisited.accept(_Payload); }
public void visitSClassNode(SClassNode iVisited) { iVisited.accept(_Payload); }
3,238,255
public void visitScopeNode(ScopeNode iVisited) { iVisited.accept(_Payload); Node lNext = iVisited.getNextNode(); if (lNext != null) { lNext.accept(this); } }
public void visitScopeNode(ScopeNode iVisited) { iVisited.accept(_Payload); Node lNext = iVisited.getNextNode(); if (lNext != null) { lNext.accept(this); } }
3,238,256
public void visitSelfNode(SelfNode iVisited) { iVisited.accept(_Payload); }
public void visitSelfNode(SelfNode iVisited) { iVisited.accept(_Payload); }
3,238,257
public void visitStrNode(StrNode iVisited) { iVisited.accept(_Payload); }
public void visitStrNode(StrNode iVisited) { iVisited.accept(_Payload); }
3,238,258
public void visitSuperNode(SuperNode iVisited) { iVisited.accept(_Payload); }
public void visitSuperNode(SuperNode iVisited) { iVisited.accept(_Payload); }
3,238,259
public void visitTrueNode(TrueNode iVisited) { iVisited.accept(_Payload); }
public void visitTrueNode(TrueNode iVisited) { iVisited.accept(_Payload); }
3,238,260
public void visitUndefNode(UndefNode iVisited) { iVisited.accept(_Payload); }
public void visitUndefNode(UndefNode iVisited) { iVisited.accept(_Payload); }
3,238,261
public void visitUntilNode(UntilNode iVisited) { iVisited.accept(_Payload); }
public void visitUntilNode(UntilNode iVisited) { iVisited.accept(_Payload); }
3,238,262
public void visitVAliasNode(VAliasNode iVisited) { iVisited.accept(_Payload); }
public void visitVAliasNode(VAliasNode iVisited) { iVisited.accept(_Payload); }
3,238,263
public void visitVCallNode(VCallNode iVisited) { iVisited.accept(_Payload); }
public void visitVCallNode(VCallNode iVisited) { iVisited.accept(_Payload); }
3,238,264
public void visitWhenNode(WhenNode iVisited) { iVisited.accept(_Payload); iVisited.getConditionNode().accept(this); iVisited.getBodyNode().accept(this); }
public void visitWhenNode(WhenNode iVisited) { _Payload.visitWhenNode(iVisited); iVisited.getConditionNode().accept(this); iVisited.getBodyNode().accept(this); }
3,238,265
public void visitWhileNode(WhileNode iVisited) { iVisited.accept(_Payload); }
public void visitWhileNode(WhileNode iVisited) { iVisited.accept(_Payload); }
3,238,266
public void visitXStrNode(XStrNode iVisited) { iVisited.accept(_Payload); }
public void visitXStrNode(XStrNode iVisited) { iVisited.accept(_Payload); }
3,238,267
public void visitYieldNode(YieldNode iVisited) { iVisited.accept(_Payload); }
public void visitYieldNode(YieldNode iVisited) { iVisited.accept(_Payload); }
3,238,268
public void visitZArrayNode(ZArrayNode iVisited) { iVisited.accept(_Payload); }
public void visitZArrayNode(ZArrayNode iVisited) { iVisited.accept(_Payload); }
3,238,269
public void visitZSuperNode(ZSuperNode iVisited) { iVisited.accept(_Payload); }
public void visitZSuperNode(ZSuperNode iVisited) { iVisited.accept(_Payload); }
3,238,270
public RubyExceptions getExceptions() { return exceptions; }
public RubyExceptions getExceptions() { return exceptions; }
3,238,271
public Block cloneBlock() { Block newBlock = new Block(var, method, self, frame, scope, klass, iter, dynamicVariables); if (getNext() != null) { newBlock.setNext(((Block)getNext())); } return newBlock; }
public Block cloneBlock() { Block newBlock = new Block(var, method, self, frame, scope, klass, iter, new HashMap(dynamicVariables)); if (getNext() != null) { newBlock.setNext(((Block)getNext())); } return newBlock; }
3,238,272
final public ParseException generateParseException() { jj_expentries.removeAllElements(); boolean[] la1tokens = new boolean[35]; for (int i = 0; i < 35; i++) { la1tokens[i] = false; } if (jj_kind >= 0) { la1tokens[jj_kind] = true; jj_kind = -1; } for (int i = 0; i < 2; i++) { ...
final public ParseException generateParseException() { jj_expentries.removeAllElements(); boolean[] la1tokens = new boolean[35]; for (int i = 0; i < 35; i++) { la1tokens[i] = false; } if (jj_kind >= 0) { la1tokens[jj_kind] = true; jj_kind = -1; } for (int i = 0; i < 2; i++) { ...
3,238,273
final public ParseException generateParseException() { jj_expentries.removeAllElements(); boolean[] la1tokens = new boolean[35]; for (int i = 0; i < 35; i++) { la1tokens[i] = false; } if (jj_kind >= 0) { la1tokens[jj_kind] = true; jj_kind = -1; } for (int i = 0; i < 2; i++) { ...
final public ParseException generateParseException() { jj_expentries.removeAllElements(); boolean[] la1tokens = new boolean[35]; for (int i = 0; i < 37; i++) { la1tokens[i] = false; } if (jj_kind >= 0) { la1tokens[jj_kind] = true; jj_kind = -1; } for (int i = 0; i < 2; i++) { ...
3,238,274
final public WikiPage parse(WikiPageBuilder builder) throws ParseException { Token t; label_1: while (true) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case QUOTED_BLOCK: case BOLD: case UNDERLINE: case ITALIC: case LT: case GT: c...
final public WikiPage parse(WikiPageBuilder builder) throws ParseException { Token t; builder.begin(); label_1: while (true) { switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case QUOTED_BLOCK: case BOLD: case UNDERLINE: case ITALIC: case LT: ...
3,238,275
final void MoreLexicalActions() { jjimageLen += (lengthOfMatch = jjmatchedPos + 1); switch (jjmatchedKind) { case 7: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen))); else image.append(input_stream.GetSuffix(jjimageLen)); jjimageLen = 0; break; defa...
final void MoreLexicalActions() { jjimageLen += (lengthOfMatch = jjmatchedPos + 1); switch (jjmatchedKind) { case 7: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen))); else image.append(input_stream.GetSuffix(jjimageLen)); jjimageLen = 0; break; defa...
3,238,277
final void MoreLexicalActions() { jjimageLen += (lengthOfMatch = jjmatchedPos + 1); switch (jjmatchedKind) { case 7: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen))); else image.append(input_stream.GetSuffix(jjimageLen)); jjimageLen = 0; break; defa...
final void MoreLexicalActions() { jjimageLen += (lengthOfMatch = jjmatchedPos + 1); switch (jjmatchedKind) { case 7: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen))); else image.append(input_stream.GetSuffix(jjimageLen)); jjimageLen = 0; break; defa...
3,238,278
final void MoreLexicalActions() { jjimageLen += (lengthOfMatch = jjmatchedPos + 1); switch (jjmatchedKind) { case 7: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen))); else image.append(input_stream.GetSuffix(jjimageLen)); jjimageLen = 0; break; defa...
final void MoreLexicalActions() { jjimageLen += (lengthOfMatch = jjmatchedPos + 1); switch (jjmatchedKind) { case 7: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen))); else image.append(input_stream.GetSuffix(jjimageLen)); jjimageLen = 0; break; defa...
3,238,279
final void MoreLexicalActions() { jjimageLen += (lengthOfMatch = jjmatchedPos + 1); switch (jjmatchedKind) { case 7: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen))); else image.append(input_stream.GetSuffix(jjimageLen)); jjimageLen = 0; break; defa...
final void MoreLexicalActions() { jjimageLen += (lengthOfMatch = jjmatchedPos + 1); switch (jjmatchedKind) { case 7: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen))); else image.append(input_stream.GetSuffix(jjimageLen)); jjimageLen = 0; break; defa...
3,238,280
final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); ...
final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); ...
3,238,281
final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); ...
final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); ...
3,238,282
final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); ...
final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); ...
3,238,283
final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); ...
final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); ...
3,238,284
final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); ...
final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); ...
3,238,285
final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); ...
final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); ...
3,238,286
final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); ...
final void SkipLexicalActions() { switch (jjmatchedKind) { case 8: if (image == null) image = new StringBuffer(new String(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1)))); else image.append(input_stream.GetSuffix(jjimageLen + (lengthOfMatch = jjmatchedPos + 1))); ...
3,238,287
private final Token jjFillToken() { Token t = Token.newToken(jjmatchedKind); t.kind = jjmatchedKind; if (jjmatchedPos < 0) { t.image = ""; t.beginLine = t.endLine = input_stream.getBeginLine(); t.beginColumn = t.endColumn = input_stream.getBeginColumn(); } else { String im = jjstrLiteralImages[jjmatched...
private final Token jjFillToken() { Token t = Token.newToken(jjmatchedKind); t.kind = jjmatchedKind; if (jjmatchedPos < 0) { t.image = ""; t.beginLine = t.endLine = input_stream.getBeginLine(); t.beginColumn = t.endColumn = input_stream.getBeginColumn(); } else { String im = jjstrLiteralImages[jjmatched...
3,238,288
private final int jjMoveNfa_2(int startState, int curPos) { int startsAt = 0; jjnewStateCnt = 3; int i = 1; jjstateSet[0] = startState; int kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << curChar; MatchLoop: do { switch (jjstate...
private final int jjMoveNfa_2(int startState, int curPos) { int startsAt = 0; jjnewStateCnt = 3; int i = 1; jjstateSet[0] = startState; int kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << curChar; MatchLoop: do { switch (jjstate...
3,238,289
public void clean(Set setOfModelObjects) {//TODO generics if (setOfModelObjects!=null){ Set done = new HashSet(); for (Iterator it = setOfModelObjects.iterator(); it.hasNext();) { OMEModel modelObj = (OMEModel) it.next(); modelObj.getUtils().clean(modelObj,...
public void clean(Set setOfModelObjects) {//TODO generics if (setOfModelObjects!=null){ Set done = new HashSet(); for (Iterator it = setOfModelObjects.iterator(); it.hasNext();) { OMEModel modelObj = (OMEModel) it.next(); modelObj.getUtils().clean(modelObj,...
3,238,290
public void encodeBegin(FacesContext context) throws IOException { if(clearOnInit) { WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "clear"); }// WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "updateLocale");// updateEditButtons(); super.encodeBegin(context); IWContext iwc = IWContext.getIWContext(context); String resourcePath ...
public void encodeBegin(FacesContext context) throws IOException { if(clearOnInit) { WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "clear"); }// WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "updateLocale");// updateEditButtons(); super.encodeBegin(context); IWContext iwc = IWContext.getIWContext(context); String resourcePath ...
3,238,291
public void encodeBegin(FacesContext context) throws IOException { if(clearOnInit) { WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "clear"); }// WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "updateLocale");// updateEditButtons(); super.encodeBegin(context); IWContext iwc = IWContext.getIWContext(context); String resourcePath ...
public void encodeBegin(FacesContext context) throws IOException { if(clearOnInit) { WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "clear"); }// WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "updateLocale");// updateEditButtons(); super.encodeBegin(context); IWContext iwc = IWContext.getIWContext(context); String resourcePath ...
3,238,292
public void encodeBegin(FacesContext context) throws IOException { if(clearOnInit) { WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "clear"); }// WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "updateLocale");// updateEditButtons(); super.encodeBegin(context); IWContext iwc = IWContext.getIWContext(context); String resourcePath ...
public void encodeBegin(FacesContext context) throws IOException { if(clearOnInit) { WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "clear"); }// WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "updateLocale");// updateEditButtons(); super.encodeBegin(context); IWContext iwc = IWContext.getIWContext(context); String resourcePath ...
3,238,293
public UIComponent getEditContainer() { IWContext iwc = IWContext.getInstance(); WFResourceUtil localizer = WFResourceUtil.getResourceUtilArticle(); String ref = ARTICLE_ITEM_BEAN_ID + ".";// String bref = WFPage.CONTENT_BUNDLE + "."; WFContainer mainContainer = new WFContainer(); mainContainer.setId(ARTICLE_E...
public UIComponent getEditContainer() { IWContext iwc = IWContext.getInstance(); WFResourceUtil localizer = WFResourceUtil.getResourceUtilArticle(); String ref = ARTICLE_ITEM_BEAN_ID + ".";// String bref = WFPage.CONTENT_BUNDLE + "."; WFContainer mainContainer = new WFContainer(); mainContainer.setId(ARTICLE_E...
3,238,295
public UIComponent getEditContainer() { IWContext iwc = IWContext.getInstance(); WFResourceUtil localizer = WFResourceUtil.getResourceUtilArticle(); String ref = ARTICLE_ITEM_BEAN_ID + ".";// String bref = WFPage.CONTENT_BUNDLE + "."; WFContainer mainContainer = new WFContainer(); mainContainer.setId(ARTICLE_E...
public UIComponent getEditContainer() { IWContext iwc = IWContext.getInstance(); WFResourceUtil localizer = WFResourceUtil.getResourceUtilArticle(); String ref = ARTICLE_ITEM_BEAN_ID + ".";// String bref = WFPage.CONTENT_BUNDLE + "."; WFContainer mainContainer = new WFContainer(); mainContainer.setId(ARTICLE_E...
3,238,296
public UIComponent getEditContainer() { IWContext iwc = IWContext.getInstance(); WFResourceUtil localizer = WFResourceUtil.getResourceUtilArticle(); String ref = ARTICLE_ITEM_BEAN_ID + ".";// String bref = WFPage.CONTENT_BUNDLE + "."; WFContainer mainContainer = new WFContainer(); mainContainer.setId(ARTICLE_E...
public UIComponent getEditContainer() { IWContext iwc = IWContext.getInstance(); WFResourceUtil localizer = WFResourceUtil.getResourceUtilArticle(); String ref = ARTICLE_ITEM_BEAN_ID + ".";// String bref = WFPage.CONTENT_BUNDLE + "."; WFContainer mainContainer = new WFContainer(); mainContainer.setId(ARTICLE_E...
3,238,297
public void processAction(ActionEvent event) { String id = event.getComponent().getId(); EditArticleView ab = (EditArticleView) event.getComponent().getParent().getParent().getParent().findComponent(EDIT_ARTICLE_BLOCK_ID); if (id.equals(SAVE_ID)) { ab.storeArticle();// String resourcePath = (String) WFUtil.invo...
public void processAction(ActionEvent event) { String id = event.getComponent().getId(); EditArticleView ab = (EditArticleView) event.getComponent().getParent().getParent().getParent().findComponent(EDIT_ARTICLE_BLOCK_ID); if (id.equals(SAVE_ID)) { ab.storeArticle();// String resourcePath = (String) WFUtil.invo...
3,238,298
public void processAction(ActionEvent event) { String id = event.getComponent().getId(); EditArticleView ab = (EditArticleView) event.getComponent().getParent().getParent().getParent().findComponent(EDIT_ARTICLE_BLOCK_ID); if (id.equals(SAVE_ID)) { ab.storeArticle();// String resourcePath = (String) WFUtil.invo...
public void processAction(ActionEvent event) { String id = event.getComponent().getId(); EditArticleView ab = (EditArticleView) event.getComponent().getParent().getParent().getParent().findComponent(EDIT_ARTICLE_BLOCK_ID); if (id.equals(SAVE_ID)) { ab.storeArticle();// String resourcePath = (String) WFUtil.invo...
3,238,299
public void processAction(ActionEvent event) { String id = event.getComponent().getId(); EditArticleView ab = (EditArticleView) event.getComponent().getParent().getParent().getParent().findComponent(EDIT_ARTICLE_BLOCK_ID); if (id.equals(SAVE_ID)) { ab.storeArticle();// String resourcePath = (String) WFUtil.invo...
public void processAction(ActionEvent event) { String id = event.getComponent().getId(); EditArticleView ab = (EditArticleView) event.getComponent().getParent().getParent().getParent().findComponent(EDIT_ARTICLE_BLOCK_ID); if (id.equals(SAVE_ID)) { ab.storeArticle();// String resourcePath = (String) WFUtil.invo...
3,238,300
public void storeArticle() { String bref = WFPage.CONTENT_BUNDLE + "."; boolean storeOk = ((Boolean) WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "storeArticle")).booleanValue(); if (!storeOk) { List errorKeys = (List) WFUtil.getValue(ARTICLE_ITEM_BEAN_ID, "errorKeys"); if (errorKeys != null) { for (Iterator iter = e...
public void storeArticle() { String bref = WFPage.CONTENT_BUNDLE + "."; boolean storeOk = ((Boolean) WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "storeArticle")).booleanValue(); if (!storeOk) { List errorKeys = (List) WFUtil.getValue(ARTICLE_ITEM_BEAN_ID, "errorKeys"); if (errorKeys != null) { for (Iterator iter = e...
3,238,302
public void storeArticle() { String bref = WFPage.CONTENT_BUNDLE + "."; boolean storeOk = ((Boolean) WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "storeArticle")).booleanValue(); if (!storeOk) { List errorKeys = (List) WFUtil.getValue(ARTICLE_ITEM_BEAN_ID, "errorKeys"); if (errorKeys != null) { for (Iterator iter = e...
public void storeArticle() { String bref = WFPage.CONTENT_BUNDLE + "."; boolean storeOk = ((Boolean) WFUtil.invoke(ARTICLE_ITEM_BEAN_ID, "storeArticle")).booleanValue(); if (!storeOk) { List errorKeys = (List) WFUtil.getValue(ARTICLE_ITEM_BEAN_ID, "errorKeys"); if (errorKeys != null) { for (Iterator iter = e...
3,238,303
execute() throws BuildException { if(_fileSets.isEmpty()) { throw new BuildException("No fileset specified"); } Set types = new HashSet(); java.util.Iterator p = _fileSets.iterator(); while(p.hasNext()) { FileSet filese...
execute() throws BuildException { if(_fileSets.isEmpty()) { throw new BuildException("No fileset specified"); } Set types = new HashSet(); java.util.Iterator p = _fileSets.iterator(); while(p.hasNext()) { FileSet filese...
3,238,305
public void setLeaves(Set leaves) { if (model.getState() != LOADING_LEAVES) throw new IllegalStateException( "This method can only be invoked in the LOADING_LEAVES "+ "state."); if (leaves == null) throw new NullPointerException("No leaves."); ...
public void setLeaves(Set leaves, TreeImageSet parent) { if (model.getState() != LOADING_LEAVES) throw new IllegalStateException( "This method can only be invoked in the LOADING_LEAVES "+ "state."); if (leaves == null) throw new NullPointerException(...
3,238,307
public void setLeaves(Set leaves) { if (model.getState() != LOADING_LEAVES) throw new IllegalStateException( "This method can only be invoked in the LOADING_LEAVES "+ "state."); if (leaves == null) throw new NullPointerException("No leaves."); ...
public void setLeaves(Set leaves) { if (model.getState() != LOADING_LEAVES) throw new IllegalStateException( "This method can only be invoked in the LOADING_LEAVES "+ "state."); if (leaves == null) throw new NullPointerException("No leaves."); ...
3,238,308
public List childNodes() { return Collections.EMPTY_LIST; }
public List childNodes() { return EMPTY_LIST; }
3,238,309
ImmutablePermissions( Permissions p ) { this.delegate = p; }
ImmutablePermissions( Permissions p ) { this.delegate = p; }
3,238,310
final public Object AExpression() throws ParseException { Object e, e2; Token op; e = Factor(); label_5: while (true) { if (jj_2_4(2)) { ; } else { break label_5; } switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case WS: jj_consume_token(WS); break; defaul...
final public Object AExpression() throws ParseException { Object e, e2; Token op; e = Factor(); label_5: while (true) { if (jj_2_5(2)) { ; } else { break label_5; } switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case WS: jj_consume_token(WS); break; defaul...
3,238,311
final public Object AExpression() throws ParseException { Object e, e2; Token op; e = Factor(); label_5: while (true) { if (jj_2_4(2)) { ; } else { break label_5; } switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case WS: jj_consume_token(WS); break; defaul...
final public Object AExpression() throws ParseException { Object e, e2; Token op; e = Factor(); label_5: while (true) { if (jj_2_4(2)) { ; } else { break label_5; } switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case WS: jj_consume_token(WS); break; defaul...
3,238,312
final public Object AExpression() throws ParseException { Object e, e2; Token op; e = Factor(); label_5: while (true) { if (jj_2_4(2)) { ; } else { break label_5; } switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case WS: jj_consume_token(WS); break; defaul...
final public Object AExpression() throws ParseException { Object e, e2; Token op; e = Factor(); label_5: while (true) { if (jj_2_4(2)) { ; } else { break label_5; } switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case WS: jj_consume_token(WS); break; defaul...
3,238,313
final public Object AExpression() throws ParseException { Object e, e2; Token op; e = Factor(); label_5: while (true) { if (jj_2_4(2)) { ; } else { break label_5; } switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case WS: jj_consume_token(WS); break; defaul...
final public Object AExpression() throws ParseException { Object e, e2; Token op; e = Factor(); label_5: while (true) { if (jj_2_4(2)) { ; } else { break label_5; } switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case WS: jj_consume_token(WS); break; defaul...
3,238,314
final public Object AndExpression() throws ParseException { Object e, e2; e = CExpression(); label_6: while (true) { if (jj_2_6(2)) { ; } else { break label_6; } switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case WS: jj_consume_token(WS); break; default: ...
final public Object AndExpression() throws ParseException { Object e, e2; e = CExpression(); label_6: while (true) { if (jj_2_7(2)) { ; } else { break label_6; } switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case WS: jj_consume_token(WS); break; default: ...
3,238,315
final public Object AndExpression() throws ParseException { Object e, e2; e = CExpression(); label_6: while (true) { if (jj_2_6(2)) { ; } else { break label_6; } switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case WS: jj_consume_token(WS); break; default: ...
final public Object AndExpression() throws ParseException { Object e, e2; e = CExpression(); label_6: while (true) { if (jj_2_6(2)) { ; } else { break label_6; } switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case WS: jj_consume_token(WS); break; default: ...
3,238,316
final public Object AndExpression() throws ParseException { Object e, e2; e = CExpression(); label_6: while (true) { if (jj_2_6(2)) { ; } else { break label_6; } switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case WS: jj_consume_token(WS); break; default: ...
final public Object AndExpression() throws ParseException { Object e, e2; e = CExpression(); label_6: while (true) { if (jj_2_6(2)) { ; } else { break label_6; } switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case WS: jj_consume_token(WS); break; default: ...
3,238,317
final public ListBuilder ArgList() throws ParseException { ListBuilder list = new ListBuilder(); Object e; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case DOLLAR: case QUOTE: case NULL: case TRUE: case FALSE: case WS: case LPAREN: case LBRACKET: case OP_MINUS: case OP_NOT: case NUMB...
final public ListBuilder ArgList() throws ParseException { ListBuilder list = new ListBuilder(); Object e; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case DOLLAR: case QUOTE: case NULL: case TRUE: case FALSE: case WS: case LPAREN: case LBRACKET: case OP_MINUS: case OP_NOT: case NUMB...
3,238,318
final public ListBuilder ArgList() throws ParseException { ListBuilder list = new ListBuilder(); Object e; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case DOLLAR: case QUOTE: case NULL: case TRUE: case FALSE: case WS: case LPAREN: case LBRACKET: case OP_MINUS: case OP_NOT: case NUMB...
final public ListBuilder ArgList() throws ParseException { ListBuilder list = new ListBuilder(); Object e; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case DOLLAR: case QUOTE: case NULL: case TRUE: case FALSE: case WS: case LPAREN: case LBRACKET: case OP_MINUS: case OP_NOT: case NUMB...
3,238,319
final public ListBuilder ArgList() throws ParseException { ListBuilder list = new ListBuilder(); Object e; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case DOLLAR: case QUOTE: case NULL: case TRUE: case FALSE: case WS: case LPAREN: case LBRACKET: case OP_MINUS: case OP_NOT: case NUMB...
final public ListBuilder ArgList() throws ParseException { ListBuilder list = new ListBuilder(); Object e; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case DOLLAR: case QUOTE: case NULL: case TRUE: case FALSE: case WS: case LPAREN: case LBRACKET: case OP_MINUS: case OP_NOT: case NUMB...
3,238,320
final public ListBuilder ArgList() throws ParseException { ListBuilder list = new ListBuilder(); Object e; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case DOLLAR: case QUOTE: case NULL: case TRUE: case FALSE: case WS: case LPAREN: case LBRACKET: case OP_MINUS: case OP_NOT: case NUMB...
final public ListBuilder ArgList() throws ParseException { ListBuilder list = new ListBuilder(); Object e; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case DOLLAR: case QUOTE: case NULL: case TRUE: case FALSE: case WS: case LPAREN: case LBRACKET: case OP_MINUS: case OP_NOT: case NUMB...
3,238,321
final public ListBuilder ArgList() throws ParseException { ListBuilder list = new ListBuilder(); Object e; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case DOLLAR: case QUOTE: case NULL: case TRUE: case FALSE: case WS: case LPAREN: case LBRACKET: case OP_MINUS: case OP_NOT: case NUMB...
final public ListBuilder ArgList() throws ParseException { ListBuilder list = new ListBuilder(); Object e; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case DOLLAR: case QUOTE: case NULL: case TRUE: case FALSE: case WS: case LPAREN: case LBRACKET: case OP_MINUS: case OP_NOT: case NUMB...
3,238,322
final public ListBuilder ArgList() throws ParseException { ListBuilder list = new ListBuilder(); Object e; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case DOLLAR: case QUOTE: case NULL: case TRUE: case FALSE: case WS: case LPAREN: case LBRACKET: case OP_MINUS: case OP_NOT: case NUMB...
final public ListBuilder ArgList() throws ParseException { ListBuilder list = new ListBuilder(); Object e; switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case DOLLAR: case QUOTE: case NULL: case TRUE: case FALSE: case WS: case LPAREN: case LBRACKET: case OP_MINUS: case OP_NOT: case NUMB...
3,238,323
final public BlockBuilder Block(Subdirective[] subdirectives) throws ParseException { ParserBlockBuilder block = new ParserBlockBuilder(); Token t; blockStack.push(subdirectives); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case LBRACE: jj_consume_token(LBRACE); EatWsNl(); label_10: while (...
final public BlockBuilder Block(Subdirective[] subdirectives) throws ParseException { ParserBlockBuilder block = new ParserBlockBuilder(); Token t; blockStack.push(subdirectives); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case LBRACE: jj_consume_token(LBRACE); EatWsNl(); label_10: while (...
3,238,324
final public BlockBuilder Block(Subdirective[] subdirectives) throws ParseException { ParserBlockBuilder block = new ParserBlockBuilder(); Token t; blockStack.push(subdirectives); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case LBRACE: jj_consume_token(LBRACE); EatWsNl(); label_10: while (...
final public BlockBuilder Block(Subdirective[] subdirectives) throws ParseException { ParserBlockBuilder block = new ParserBlockBuilder(); Token t; blockStack.push(subdirectives); switch ((jj_ntk==-1)?jj_ntk():jj_ntk) { case LBRACE: jj_consume_token(LBRACE); EatWsNl(); label_10: while (...
3,238,325