Examples of SF


Examples of com.nykredit.kundeservice.util.SF

    setLabel(day[5],"fr",0);
    setLabel(day[6],"l�",0);
    setLabel(day[7],"s�",0);
    mainPane.add(getMonth(), null);
    mainPane.add(getYear(), null);
    mainPane.add(getButton(0,0,"\u25B2",new SF(){public void func() {But(true, 1);}}), null);
    mainPane.add(getButton(0,9,"\u25BC",new SF(){public void func() {But(true, -1);}}), null);
    mainPane.add(getButton(197,0,"\u25B2",new SF(){public void func() {But(false, 1);}}), null);
    mainPane.add(getButton(197,9,"\u25BC",new SF(){public void func() {But(false, -1);}}), null);
    update();
    return mainPane;
  }
View Full Code Here

Examples of com.nykredit.kundeservice.util.SF

    setLabel(day[5],"fr",0);
    setLabel(day[6],"l�",0);
    setLabel(day[7],"s�",0);
    mainPane.add(getMonth(), null);
    mainPane.add(getYear(), null);
    mainPane.add(getButton(0,0,"\u25B2",new SF(){public void func() {But(true, 1);}}), null);
    mainPane.add(getButton(0,9,"\u25BC",new SF(){public void func() {But(true, -1);}}), null);
    mainPane.add(getButton(197,0,"\u25B2",new SF(){public void func() {But(false, 1);}}), null);
    mainPane.add(getButton(197,9,"\u25BC",new SF(){public void func() {But(false, -1);}}), null);
    update();
    return mainPane;
  }
View Full Code Here

Examples of com.nykredit.kundeservice.util.SF

    c.gridy = 0;
    p.add(new JLabel("Initialer",JLabel.LEFT),c);
   
    c.insets = new Insets(0,5,0,5);
    c.gridy = 1;   
    p.add(getTextField(agentTextField,new SF(){public void func(){event();}}),c);
   
    c.gridy = 2;
    p.add(new JLabel("Navn",JLabel.LEFT),c);
   
    c.gridy = 3;
    p.add(getTextField(textFieldNavn,null),c);
   
    c.gridy = 4;
    p.add(new JLabel("Team",JLabel.LEFT),c);
   
    c.gridy = 5;
    p.add(getTextField(textFieldTeam,null),c);
   
    c.gridy = 6;
    p.add(labelKode,c);
   
    c.gridy = 7;
    p.add(getPasswordField(passwordField),c);
   
    c.gridy = 8;
    p.add(labelGentag,c);
   
    c.gridy = 9;
    p.add(getPasswordField(passwordFieldRepeat),c);
   
    c.gridy = 10;
    c.gridwidth = 2;
    p.add(getButton(buttonLogInd,new SF(){public void func(){login();}}),c);
   
    c.gridy = 11;
    c.insets = new Insets(0,5,5,5);
    p.add(getButton(buttonSkiftKode,new SF(){public void func(){skift();}}),c);
   
    p.setOpaque(false);
    agentTextField.setText(agent);
    agentTextField.setEditable(true);
    agentTextField.setEnabled(true);
View Full Code Here

Examples of org.kapott.hbci.protocol.SF

      super(Integer.parseInt(HBCIUtils.getParam("kernel.objpool.SF","128")));
    }
   
    public SF createSF(String type, String name, String path, char predelim, int idx, StringBuffer res, int fullResLen, Document syntax, Hashtable<String,String> predefs,Hashtable<String,String> valids)
    {
        SF ret=(SF)getFreeObject();
       
        if (ret==null) {
            // HBCIUtils.log("creating new SF object",HBCIUtils.LOG_DEBUG);
            ret=new SF(type,name,path,predelim,idx,res,fullResLen,syntax,predefs,valids);
            addToUsedPool(ret);
        } else {
            // HBCIUtils.log("reusing SF object",HBCIUtils.LOG_DEBUG);
            try {
                ret.init(type,name,path,predelim,idx,res,fullResLen,syntax,predefs,valids);
                addToUsedPool(ret);
            } catch (RuntimeException e) {
                addToFreePool(ret);
                throw e;
            }
View Full Code Here

Examples of org.kapott.hbci.protocol.SF

        return ret;
    }
   
    public SF createSF(String type, String name, String path, int idx, Document syntax)
    {
        SF ret=(SF)getFreeObject();
       
        if (ret==null) {
            // HBCIUtils.log("creating new SF object",HBCIUtils.LOG_DEBUG);
            ret=new SF(type, name, path, idx, syntax);
            addToUsedPool(ret);
        } else {
            // HBCIUtils.log("reusing SF object",HBCIUtils.LOG_DEBUG);
            try {
                ret.init(type, name, path, idx, syntax);
                addToUsedPool(ret);
            } catch (RuntimeException e) {
                addToFreePool(ret);
                throw e;
            }
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.