本文整理汇总了Java中org.hy.common.xml.XJava.parserAnnotation方法的典型用法代码示例。如果您正苦于以下问题:Java XJava.parserAnnotation方法的具体用法?Java XJava.parserAnnotation怎么用?Java XJava.parserAnnotation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.hy.common.xml.XJava
的用法示例。
在下文中一共展示了XJava.parserAnnotation方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: JU_ReadVerticalGrade
import org.hy.common.xml.XJava; //导入方法依赖的package包/类
public JU_ReadVerticalGrade() throws Exception
{
if ( !$isInit )
{
$isInit = true;
XJava.parserAnnotation(JU_ReadVerticalGrade.class.getName());
}
}
示例2: JU_ReportNormal
import org.hy.common.xml.XJava; //导入方法依赖的package包/类
public JU_ReportNormal() throws Exception
{
if ( !$isInit )
{
$isInit = true;
XJava.parserAnnotation(JU_ReportNormal.class.getName());
}
}
示例3: JU_Report01
import org.hy.common.xml.XJava; //导入方法依赖的package包/类
public JU_Report01() throws Exception
{
if ( !$isInit )
{
$isInit = true;
XJava.parserAnnotation(JU_Report01.class.getName());
}
}
示例4: JU_ReadHorizontal
import org.hy.common.xml.XJava; //导入方法依赖的package包/类
public JU_ReadHorizontal() throws Exception
{
if ( !$isInit )
{
$isInit = true;
XJava.parserAnnotation(JU_ReadHorizontal.class.getName());
}
}
示例5: JU_ReadVertical
import org.hy.common.xml.XJava; //导入方法依赖的package包/类
public JU_ReadVertical() throws Exception
{
if ( !$isInit )
{
$isInit = true;
XJava.parserAnnotation(JU_ReadVertical.class.getName());
}
}
示例6: JU_Total02
import org.hy.common.xml.XJava; //导入方法依赖的package包/类
public JU_Total02() throws Exception
{
if ( !$isInit )
{
$isInit = true;
XJava.parserAnnotation(JU_Total02.class.getName());
}
}
示例7: JU_Total_Subtotal
import org.hy.common.xml.XJava; //导入方法依赖的package包/类
public JU_Total_Subtotal() throws Exception
{
if ( !$isInit )
{
$isInit = true;
XJava.parserAnnotation(JU_Total_Subtotal.class.getName());
}
}
示例8: JU_PageTitle
import org.hy.common.xml.XJava; //导入方法依赖的package包/类
public JU_PageTitle() throws Exception
{
if ( !$isInit )
{
$isInit = true;
XJava.parserAnnotation(JU_PageTitle.class.getName());
}
}
示例9: JU_ZXing
import org.hy.common.xml.XJava; //导入方法依赖的package包/类
public JU_ZXing() throws Exception
{
if ( !$isInit )
{
$isInit = true;
XJava.parserAnnotation(JU_ZXing.class.getName());
}
}
示例10: JU_Total03
import org.hy.common.xml.XJava; //导入方法依赖的package包/类
public JU_Total03() throws Exception
{
if ( !$isInit )
{
$isInit = true;
XJava.parserAnnotation(JU_Total03.class.getName());
}
}
示例11: JU_Sheets
import org.hy.common.xml.XJava; //导入方法依赖的package包/类
public JU_Sheets() throws Exception
{
if ( !$isInit )
{
$isInit = true;
XJava.parserAnnotation(JU_Sheets.class.getName());
}
}
示例12: JU_LDAP
import org.hy.common.xml.XJava; //导入方法依赖的package包/类
public JU_LDAP() throws Exception
{
if ( !$isInit )
{
$isInit = true;
XJava.parserAnnotation(JU_LDAP.class.getName());
}
}
示例13: JU_Berkeley
import org.hy.common.xml.XJava; //导入方法依赖的package包/类
public JU_Berkeley() throws Exception
{
if ( !$IsInit )
{
$IsInit = true;
XJava.parserAnnotation("org.hy.common.berkeley");
}
}
示例14: main
import org.hy.common.xml.XJava; //导入方法依赖的package包/类
public static void main(String[] i_Args) throws Exception
{
AppParameter v_Apps = new AppParameter(i_Args);
String v_HBaseIP = v_Apps.getParamValue("ip");
String v_FileName = v_Apps.getParamValue("file");
String v_FileType = v_Apps.getParamValue("fileType");
String v_CMD = v_Apps.getParamValue("cmd");
String v_Language = Help.NVL(v_Apps.getParamValue("language") ,"cn");
if ( v_Apps.isShowVersion() )
{
System.out.println(showVersionInfo());
return;
}
if ( v_Apps.isShowHelp() )
{
System.out.println(showHelpInfo());
return;
}
if ( Help.isNull(v_HBaseIP) )
{
System.out.println("Parameter [ip] is null.");
return;
}
$HBase = new HBase(v_HBaseIP);
$HBase.setResultType(ResultType.ResultType_HData);
if ( v_Apps.isExists("-window") )
{
XJava.putObject("SYS_LANGUAGE" ,v_Language);
XJava.parserAnnotation("org.hy.hbase");
AppFrame v_AppFrame = (AppFrame)XJava.getObject("AppFrame");
Dimension v_Dimension = Toolkit.getDefaultToolkit().getScreenSize();
v_Dimension.height = v_Dimension.height - 40;
v_AppFrame.setHBase($HBase);
v_AppFrame.setIconImage(java.awt.Toolkit.getDefaultToolkit().getImage(v_AppFrame.getClass().getResource("img/HBase.png")));
v_AppFrame.setSize(v_Dimension);
v_AppFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
v_AppFrame.setTitle("HBase客户端 " + $VersionNo);
v_AppFrame.setVisible(true);
v_AppFrame.validate();
v_AppFrame.init();
return;
}
if ( Help.isNull(v_CMD) )
{
if ( Help.isNull(v_FileName) )
{
System.out.println("Parameter [file] is null.");
return;
}
exeutesFile(new File(v_FileName) ,v_FileType);
}
else
{
executes(v_CMD);
}
}
示例15: test_001
import org.hy.common.xml.XJava; //导入方法依赖的package包/类
/**
* 简单的读写测试
*/
public void test_001() throws Exception
{
XJava.parserAnnotation("org.hy.common.berkeley");
Berkeley v_Berkeley = (Berkeley)XJava.getObject("Berkeley");
// 读写普通字符串信息
String v_Key = "ZhengWei(HY)" + Date.getNowTime().getFullMilli_ID();
v_Berkeley.put(v_Key ,Date.getNowTime().getFullMilli());
System.out.println(v_Berkeley.get(v_Key));
// 读写对象信息
BeanInfo v_Bean = new BeanInfo();
ChildBean v_Obj = new ChildBean();
ElseInfo v_Else = new ElseInfo();
v_Bean.setName("ZhengWei(HY)");
v_Bean.setCreateTime(new Date());
v_Obj.setBean( v_Bean);
v_Obj.setCount(10);
Thread.sleep(1000);
v_Else.setCreateTime(new Date());
v_Berkeley.put(v_Key + "B" ,v_Bean);
v_Berkeley.put(v_Key + "C" ,v_Obj);
v_Berkeley.put(v_Key + "E" ,v_Else);
v_Bean = (BeanInfo) v_Berkeley.getObject(v_Key + "B");
v_Obj = (ChildBean)v_Berkeley.getObject(v_Key + "C");
v_Else = (ElseInfo) v_Berkeley.getObject(v_Key + "E");
System.out.println(v_Bean.getCreateTime().getFullMilli());
System.out.println(v_Obj.getBean().getCreateTime().getFullMilli());
System.out.println(v_Else.getCreateTime().getFullMilli());
System.out.println(" Count = " + v_Berkeley.getCount());
System.out.println("Object Count = " + v_Berkeley.getObjectCount());
Help.print(v_Berkeley.gets());
}