Package center.task.prm.tp

Examples of center.task.prm.tp.Int


        this.classname = new Str(classname, this);

      Element block_duration = (Element) Strings.getXMLObject(e,
          "block_duration");
      if (block_duration != null)
        this.block_duration = new Int(block_duration, this);

      Element finish_duration = (Element) Strings.getXMLObject(e,
          "finish_duration");
      if (finish_duration != null)
        this.finish_duration = new Int(finish_duration, this);

      Element arch_day = (Element) Strings.getXMLObject(e, "arch_day");
      if (arch_day != null)
        this.arch_day = new Str(arch_day, this);

      Element processor_id = (Element) Strings.getXMLObject(e,
          "processor_id");
      if (processor_id != null)
        this.processor_id = new Int(processor_id, this);

      Element df = (Element) Strings.getXMLObject(e, "deleted-files");
      deletedfiles = new HashSet<Object>();
      if (df != null) {
        NodeList files = Xml.getElementsByTagName(df, "file");
View Full Code Here


      throw new SysException("Undefined element \"action\"");
    this.action = new Str(action, this);
    Element pcs = (Element) Strings.getXMLObject(e, "period-check-sec");
    if (pcs == null)
      throw new SysException("Undefined element \"period-check-sec\"");
    this.pcs = new Int(pcs, this);
    Element wait_finished = (Element) Strings.getXMLObject(e, "wait-finished");
    if (wait_finished == null)
      this.wait_finished = null;
    else
      this.wait_finished = new Str(wait_finished, this);
View Full Code Here

TOP

Related Classes of center.task.prm.tp.Int

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.