Package datasoul.serviceitems

Examples of datasoul.serviceitems.ContentlessServiceItem


                } else if (nodeList.item(i).getNodeName().equals("TextServiceItem")) {
                    TextServiceItem tsi = new TextServiceItem();
                    tsi.readObject(nodeList.item(i), zip);
                    this.addItem(tsi);
                } else if (nodeList.item(i).getNodeName().equals("ContentlessServiceItem")) {
                    ContentlessServiceItem csi = new ContentlessServiceItem();
                    csi.readObject(nodeList.item(i), zip);
                    this.addItem(csi);
                } else if (nodeList.item(i).getNodeName().equals("AttachmentServiceItem")) {
                    AttachmentServiceItem asi = new AttachmentServiceItem();
                    asi.readObject(nodeList.item(i), zip);
                    this.addItem(asi);
View Full Code Here


}//GEN-LAST:event_actAddTextActionPerformed

    private void actAddContentlessItemActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_actAddContentlessItemActionPerformed
        String s = JOptionPane.showInputDialog(this, java.util.ResourceBundle.getBundle("datasoul/internationalize").getString("SERVICE ITEM NAME:"), "");
        if (s != null && !s.trim().equals("")) {
            ContentlessServiceItem csi = new ContentlessServiceItem();
            csi.setTitle(s);
            csi.setTemplate("");
            ServiceListTable.getActiveInstance().addItem(csi);
        }
}//GEN-LAST:event_actAddContentlessItemActionPerformed
View Full Code Here

TOP

Related Classes of datasoul.serviceitems.ContentlessServiceItem

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.