本文整理了Java中java.awt.Window.getComponentOrientation()
方法的一些代码示例,展示了Window.getComponentOrientation()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Window.getComponentOrientation()
方法的具体详情如下:
包路径:java.awt.Window
类名称:Window
方法名:getComponentOrientation
暂无
代码示例来源:origin: com.jtattoo/JTattoo
protected boolean isLeftToRight() {
return (window == null) ? getRootPane().getComponentOrientation().isLeftToRight() : window.getComponentOrientation().isLeftToRight();
}
代码示例来源:origin: org.java.net.substance/substance
boolean leftToRight = (window == null) ? rootPane
.getComponentOrientation().isLeftToRight() : window
.getComponentOrientation().isLeftToRight();
代码示例来源:origin: com.github.insubstantial/substance
boolean leftToRight = (window == null) ? rootPane
.getComponentOrientation().isLeftToRight() : window
.getComponentOrientation().isLeftToRight();
代码示例来源:origin: com.fifesoft/languagesupport
ComponentOrientation o = parent.getComponentOrientation();
JPanel contentPane = new JPanel(new BorderLayout());
contentPane.setBorder(TipUtil.getToolTipBorder());
代码示例来源:origin: net.sf.squirrel-sql.thirdparty-non-maven/napkinlaf
window.getComponentOrientation().isLeftToRight();
boolean isSelected = window == null || window.isActive();
int width = getWidth();
代码示例来源:origin: net.sf.squirrel-sql.thirdparty-non-maven/napkinlaf
public void layoutContainer(Container c) {
boolean leftToRight = (window == null) ?
getRootPane().getComponentOrientation().isLeftToRight() :
window.getComponentOrientation().isLeftToRight();
代码示例来源:origin: com.github.insubstantial/substance
boolean leftToRight = (window == null) ? rootPane
.getComponentOrientation().isLeftToRight() : window
.getComponentOrientation().isLeftToRight();
int width = this.getWidth();
int height = this.getHeight();
代码示例来源:origin: org.java.net.substance/substance
boolean leftToRight = (window == null) ? rootPane
.getComponentOrientation().isLeftToRight() : window
.getComponentOrientation().isLeftToRight();
int width = this.getWidth();
int height = this.getHeight();
代码示例来源:origin: net.sf.squirrel-sql.thirdparty-non-maven/toniclf
(window == null)
? getRootPane().getComponentOrientation().isLeftToRight()
: window.getComponentOrientation().isLeftToRight();
代码示例来源:origin: org.java.net.substance/substance
public void layoutContainer(Container c) {
boolean leftToRight = (SubstanceTitlePane.this.window == null) ? SubstanceTitlePane.this
.getRootPane().getComponentOrientation().isLeftToRight()
: SubstanceTitlePane.this.window.getComponentOrientation()
.isLeftToRight();
代码示例来源:origin: com.github.insubstantial/substance
boolean leftToRight = (SubstanceTitlePane.this.window == null) ? SubstanceTitlePane.this
.getRootPane().getComponentOrientation().isLeftToRight()
: SubstanceTitlePane.this.window.getComponentOrientation()
.isLeftToRight();
内容来源于网络,如有侵权,请联系作者删除!