Searched defs:getViewCount (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DCompositeView.java149 public int getViewCount() { method in class:CompositeView
156 * @param n the number of the desired view, >= 0 && < getViewCount()
172 * the new views; >= 0 and <= getViewCount
174 * this should be a value >= 0 and <= (getViewCount() - offset)
226 * @param index the index of the child, >= 0 && < getViewCount()
256 if ((vIndex != -1) && (vIndex < getViewCount())) {
267 if(++vIndex < getViewCount()) {
319 int viewCount = getViewCount();
539 * @param index the index of the child, >= 0 && < getViewCount()
558 if ((index >= 0) && (index < getViewCount())) {
[all...]
H A DView.java338 for (int i = 0; i < getViewCount(); i++) {
355 * @see View#getViewCount
357 public int getViewCount() { method in class:View
365 * @param n the number of the view to get, >= 0 && < getViewCount()
380 replace(0, getViewCount(), null);
418 replace(getViewCount(), 0, one);
431 * the new views. This should be a value >= 0 and <= getViewCount
433 * This should be a value >= 0 and <= (getViewCount() - offset).
465 * <code>getViewCount()</code>
696 if (getViewCount() >
[all...]
H A DAsyncBoxView.java196 * value >= 0 and < getViewCount().
279 int n = getViewCount();
477 if ((parent != null) && (getViewCount() == 0)) {
570 int n = getViewCount();
694 * @see View#getViewCount
696 public int getViewCount() { method in class:AsyncBoxView
706 * @param n the number of the view to get, >= 0 && < getViewCount()
724 * @param index the index of the child, >= 0 && < getViewCount()
959 int n = getViewCount();
1073 int n = getViewCount();
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicHTML.java125 if (view.getViewCount() == 0) {
134 if (name == HTML.Tag.HTML && view.getViewCount() > 1) {
161 if (view.getViewCount() == 0) {
170 if (name == HTML.Tag.HTML && view.getViewCount() > 1) {
210 for (int i = 0; i < oldValue.getViewCount(); i++) {
501 public int getViewCount() { method in class:BasicHTML.Renderer
H A DBasicTextUI.java875 if ((rootView.getViewCount() > 0) && (rootView.getView(0) != null)) {
1455 public int getViewCount() { method in class:BasicTextUI.RootView

Completed in 48 milliseconds