当前位置: 首页>>代码示例>>Java>>正文


Java AppView.getSession方法代码示例

本文整理汇总了Java中com.openbravo.pos.forms.AppView.getSession方法的典型用法代码示例。如果您正苦于以下问题:Java AppView.getSession方法的具体用法?Java AppView.getSession怎么用?Java AppView.getSession使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.openbravo.pos.forms.AppView的用法示例。


在下文中一共展示了AppView.getSession方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: AttributeUseEditor

import com.openbravo.pos.forms.AppView; //导入方法依赖的package包/类
/** Creates new form AttributeSetEditor */
public AttributeUseEditor(AppView app, DirtyManager dirty) {

    attributesent = new StaticSentence(app.getSession()
        , "SELECT ID, NAME FROM ATTRIBUTE ORDER BY NAME"
        , null
        , new SerializerRead() { public Object readValues(DataRead dr) throws BasicException {
            return new AttributeInfo(dr.getString(1), dr.getString(2));
        }}
    );
    attributemodel = new ComboBoxValModel();

    initComponents();

    jLineno.getDocument().addDocumentListener(dirty);
    jAttribute.addActionListener(dirty);
}
 
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:18,代码来源:AttributeUseEditor.java

示例2: AttributeUseEditor

import com.openbravo.pos.forms.AppView; //导入方法依赖的package包/类
/** Creates new form AttributeSetEditor
    * @param app
    * @param dirty */
   public AttributeUseEditor(AppView app, DirtyManager dirty) {

       attributesent = new StaticSentence(app.getSession()
           , "SELECT ID, NAME FROM ATTRIBUTE ORDER BY NAME"
           , null
           , new SerializerRead() {@Override
public Object readValues(DataRead dr) throws BasicException {
               return new AttributeInfo(dr.getString(1), dr.getString(2));
           }}
       );
       attributemodel = new ComboBoxValModel();

       initComponents();

       jLineno.getDocument().addDocumentListener(dirty);
       jAttribute.addActionListener(dirty);
   }
 
开发者ID:gnoopy,项目名称:wifepos,代码行数:21,代码来源:AttributeUseEditor.java

示例3: init

import com.openbravo.pos.forms.AppView; //导入方法依赖的package包/类
public void init(AppView app) {

        attsent = new StaticSentence(app.getSession()
            , "SELECT ID, NAME FROM ATTRIBUTE ORDER BY NAME"
            , null
            , new SerializerRead() { public Object readValues(DataRead dr) throws BasicException {
                return new AttributeInfo(dr.getString(1), dr.getString(2));
            }});
        attmodel = new ComboBoxValModel();
    }
 
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:11,代码来源:AttributeFilter.java

示例4: init

import com.openbravo.pos.forms.AppView; //导入方法依赖的package包/类
public void init(AppView app) {

        attusesent = new StaticSentence(app.getSession()
            , "SELECT ID, NAME FROM ATTRIBUTESET ORDER BY NAME"
            , null
            , new SerializerRead() { public Object readValues(DataRead dr) throws BasicException {
                return new AttributeSetInfo(dr.getString(1), dr.getString(2));
            }});
        attusemodel = new ComboBoxValModel();
    }
 
开发者ID:iMartinezMateu,项目名称:openbravo-pos,代码行数:11,代码来源:AttributeSetFilter.java

示例5: init

import com.openbravo.pos.forms.AppView; //导入方法依赖的package包/类
/**
    *
    * @param app
    */
   @Override
   public void init(AppView app) {

       attsent = new StaticSentence(app.getSession()
           , "SELECT ID, NAME FROM ATTRIBUTE ORDER BY NAME"
           , null
           , new SerializerRead() {@Override
public Object readValues(DataRead dr) throws BasicException {
               return new AttributeInfo(dr.getString(1), dr.getString(2));
           }});
       attmodel = new ComboBoxValModel();
   }
 
开发者ID:gnoopy,项目名称:wifepos,代码行数:17,代码来源:AttributeFilter.java

示例6: init

import com.openbravo.pos.forms.AppView; //导入方法依赖的package包/类
/**
    *
    * @param app
    */
   @Override
   public void init(AppView app) {

       attusesent = new StaticSentence(app.getSession()
           , "SELECT ID, NAME FROM ATTRIBUTESET ORDER BY NAME"
           , null
           , new SerializerRead() {@Override
public Object readValues(DataRead dr) throws BasicException {
               return new AttributeSetInfo(dr.getString(1), dr.getString(2));
           }});
       attusemodel = new ComboBoxValModel();
   }
 
开发者ID:gnoopy,项目名称:wifepos,代码行数:17,代码来源:AttributeSetFilter.java


注:本文中的com.openbravo.pos.forms.AppView.getSession方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。