本文整理汇总了Java中java.applet.Applet.getParameter方法的典型用法代码示例。如果您正苦于以下问题:Java Applet.getParameter方法的具体用法?Java Applet.getParameter怎么用?Java Applet.getParameter使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.applet.Applet
的用法示例。
在下文中一共展示了Applet.getParameter方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: init
import java.applet.Applet; //导入方法依赖的package包/类
/**
* Creates a new <code>ORB</code> instance for an applet. This
* method may be called from applets only and returns a new
* fully-functional <code>ORB</code> object each time it is called.
* @param app the applet; may be <code>null</code>
* @param props applet-specific properties; may be <code>null</code>
* @return the newly-created ORB instance
*/
public static ORB init(Applet app, Properties props) {
String className;
ORB orb;
className = app.getParameter(ORBClassKey);
if (className == null && props != null)
className = props.getProperty(ORBClassKey);
if (className == null)
className = getSystemProperty(ORBClassKey);
if (className == null)
className = getPropertyFromFile(ORBClassKey);
if ((className == null) ||
(className.equals("com.sun.corba.se.impl.orb.ORBImpl"))) {
orb = new com.sun.corba.se.impl.orb.ORBImpl();
} else {
orb = create_impl(className);
}
orb.set_parameters(app, props);
return orb;
}
示例2: init
import java.applet.Applet; //导入方法依赖的package包/类
/**
* Creates a new {@code ORB} instance for an applet. This
* method may be called from applets only and returns a new
* fully-functional {@code ORB} object each time it is called.
* @param app the applet; may be {@code null}
* @param props applet-specific properties; may be {@code null}
* @return the newly-created ORB instance
*
* @implNote
* When configured via the system property, or orb.properties,
* the ORB is located via the thread context class loader.
*/
public static ORB init(Applet app, Properties props) {
String className;
ORB orb;
className = app.getParameter(ORBClassKey);
if (className == null && props != null)
className = props.getProperty(ORBClassKey);
if (className == null)
className = getSystemProperty(ORBClassKey);
if (className == null)
className = getPropertyFromFile(ORBClassKey);
if ((className == null) ||
(className.equals("com.sun.corba.se.impl.orb.ORBImpl"))) {
orb = new com.sun.corba.se.impl.orb.ORBImpl();
} else {
orb = create_impl(className);
}
orb.set_parameters(app, props);
return orb;
}