📄 get_sub_category.java
字号:
/*
* Created on 2005-10-20
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package org.huihoo.openweb.uddi;
import java.io.IOException;
import java.io.InputStream;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
/**
* @author sky1
*
* TODO To change the template for this generated type comment go to
* Window - Preferences - Java - Code Style - Code Templates
*/
public class Get_Sub_Category extends UddiObject{
public Get_Sub_Category(InputStream is)
throws IOException, UDDIXmlException
{
super(is);
}
public Get_Sub_Category(UddiObject o)
{
doc = o.doc;
}
public String getTModelKeyValue()
throws UDDIXmlException
{
UddiObject object = this.getElement("keyValue");
if(object == null)
return null;
else
return object.getValue();
}
public String getTModelKey()
throws UDDIXmlException
{
UddiObject object= this.getElement("tModelKey");
if(object == null)
return null;
else
return object.getValue();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -