Package dsk.export.utils

Examples of dsk.export.utils.ClassFilter


  @Override
  public ExportState export(ProjectAccessor projectAccessor) throws ProjectNotFoundException, IOException,
      ExportException {
    LOG.trace("get class.");
    List<IClass> classes = this.astahModelUtil.getClasses(projectAccessor.getProject(), new ClassFilter());
    // ファイル選択
    this.dataSelect.setData(classes);
    if (ChooseState.CANCEL == this.dataSelect.select()) {
      return ExportState.ES_FAILD;
    }
View Full Code Here

TOP

Related Classes of dsk.export.utils.ClassFilter

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.