Package net.sf.redmine_mylyn.api.model

Examples of net.sf.redmine_mylyn.api.model.Version


    return versions;
  }

  public List<Version> getOpenById(int[] idlist) {
    List<Version> listed = new ArrayList<Version>(idlist.length);
    Version version;
    for (int id : idlist) {
      if ((version=getById(id))!=null && version.getStatus()!=Status.CLOSED) {
        listed.add(version);
      }
    }
    return listed;
  }
View Full Code Here

TOP

Related Classes of net.sf.redmine_mylyn.api.model.Version

Copyright © 2018 www.massapicom. 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.