Package org.nexml.model

Examples of org.nexml.model.Subset.addThing()


          // assign character objects to the subset. Here we get the full list
          List<org.nexml.model.Character> nexCharacters = xmlMatrix.getCharacters();
     
          // now we iterate over the coordinates and assign the nexml characters to the set
          for ( int i = tbStart; i <= tbStop; i += tbInc ) {
            nexSubset.addThing(nexCharacters.get(i));
          }
        }
      }     
    }
   
View Full Code Here


        // assign character objects to the subset. Here we get the full list
        List<org.nexml.model.Character> xmlCharacters = xmlMatrix.getCharacters();
   
        // now we iterate over the coordinates and assign the nexml characters to the set
        for ( int i = tbStart; i <= tbStop; i += tbInc ) {
          xmlSubset.addThing(xmlCharacters.get(i));
        }
      }
    }
  } 
View Full Code Here

              // we have to assign character objects to the subset. Here we get the full list
              List<org.nexml.model.Character> nexCharacters = nexMatrix.getCharacters();
             
              // now we iterate over the coordinates and assign the nexml characters to the set
              for ( int i = start; i <= stop; i += inc ) {
                nexSubset.addThing(nexCharacters.get(i));
              }
            }
          }
        }
      }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.