コード例 #1
0
 @Override
 protected void initializeFrom(OperationLexer operationLexer) {
   projectName = operationLexer.readString();
   int referencingProjectsCount = operationLexer.readInt();
   for (int i = 0; i < referencingProjectsCount; i++) {
     referencingProjectNames.add(operationLexer.readString());
   }
 }
コード例 #2
0
 @Override
 protected void initializeFrom(OperationLexer operationLexer) {
   sourceName = operationLexer.readString();
   selections = operationLexer.readStrings();
 }