📄 axis2d.tickiterator.html
字号:
<HR><A NAME="currentLabel()"><!-- --></A><H3>currentLabel</H3><PRE>public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/lang/String.html" title="class or interface in java.lang">String</A> <B>currentLabel</B>()</PRE><DL><DD>Returns the label for current tick. This method is usually invoked only for major ticks, but may be invoked for minor ticks as well. This method returns if it can't produces a label for current tick.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../org/geotools/axis/TickIterator.html#currentLabel()">currentLabel</A></CODE> in interface <CODE><A HREF="../../../org/geotools/axis/TickIterator.html" title="interface in org.geotools.axis">TickIterator</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="currentLabelGlyphs()"><!-- --></A><H3>currentLabelGlyphs</H3><PRE>public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/awt/font/GlyphVector.html" title="class or interface in java.awt.font">GlyphVector</A> <B>currentLabelGlyphs</B>()</PRE><DL><DD>Returns the label for current tick as a glyphs vector. This method is used together with <A HREF="../../../org/geotools/axis/Axis2D.TickIterator.html#currentLabelBounds()"><CODE>currentLabelBounds()</CODE></A> for labels rendering. <strong>Do not change the returned <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/awt/font/GlyphVector.html" title="class or interface in java.awt.font"><CODE>GlyphVector</CODE></A></strong>, since the glyphs vector is not cloned for performance raisons. This method returns if it can't produces a glyph vector for current tick.<P><DD><DL></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="currentLabelBounds()"><!-- --></A><H3>currentLabelBounds</H3><PRE>public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/awt/geom/Rectangle2D.html" title="class or interface in java.awt.geom">Rectangle2D</A> <B>currentLabelBounds</B>()</PRE><DL><DD>Returns a bounding vector for the current tick label. Units are the same than axis start point (<A HREF="../../../org/geotools/axis/Axis2D.html#getX1()"><var>x<sub>1</sub></var></A>,<A HREF="../../../org/geotools/axis/Axis2D.html#getY1()"><var>y<sub>1</sub></var></A>) and end point (<A HREF="../../../org/geotools/axis/Axis2D.html#getX2()"><var>x<sub>2</sub></var></A>,<A HREF="../../../org/geotools/axis/Axis2D.html#getY2()"><var>y<sub>2</sub></var></A>). This is usually pixels. This method can be used as in the example below: <pre> <A HREF="../../../org/geotools/axis/Axis2D.TickIterator.html" title="class in org.geotools.axis"><CODE>Axis2D.TickIterator</CODE></A> iterator = axis.new <A HREF="../../../org/geotools/axis/Axis2D.TickIterator.html" title="class in org.geotools.axis"><CODE>TickIterator</CODE></A>(null}; while (iterator.<A HREF="../../../org/geotools/axis/Axis2D.TickIterator.html#hasNext()"><CODE>hasNext()</CODE></A>) { <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/awt/font/GlyphVector.html" title="class or interface in java.awt.font"><CODE>GlyphVector</CODE></A> glyphs = iterator.<A HREF="../../../org/geotools/axis/Axis2D.TickIterator.html#currentLabelGlyphs()"><CODE>currentLabelGlyphs()</CODE></A>; <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/awt/geom/Rectangle2D.html" title="class or interface in java.awt.geom"><CODE>Rectangle2D</CODE></A> bounds = iterator.<A HREF="../../../org/geotools/axis/Axis2D.TickIterator.html#currentLabelBounds()"><CODE>currentLabelBounds()</CODE></A>; graphics.drawGlyphVector(glyphs, (float)bounds.getMinX(), (float)bounds.getMaxY()); iterator.<A HREF="../../../org/geotools/axis/Axis2D.TickIterator.html#next()"><CODE>next()</CODE></A>; } </pre> This method returns if it can't compute bounding box for current tick.<P><DD><DL></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="next()"><!-- --></A><H3>next</H3><PRE>public void <B>next</B>()</PRE><DL><DD>Moves the iterator to the next minor or major tick.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../org/geotools/axis/TickIterator.html#next()">next</A></CODE> in interface <CODE><A HREF="../../../org/geotools/axis/TickIterator.html" title="interface in org.geotools.axis">TickIterator</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="nextMajor()"><!-- --></A><H3>nextMajor</H3><PRE>public void <B>nextMajor</B>()</PRE><DL><DD>Moves the iterator to the next major tick. This move ignore any minor ticks between current position and the next major tick.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../org/geotools/axis/TickIterator.html#nextMajor()">nextMajor</A></CODE> in interface <CODE><A HREF="../../../org/geotools/axis/TickIterator.html" title="interface in org.geotools.axis">TickIterator</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="rewind()"><!-- --></A><H3>rewind</H3><PRE>public void <B>rewind</B>()</PRE><DL><DD>Reset the iterator on its first tick. All other properties are left unchanged.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../org/geotools/axis/TickIterator.html#rewind()">rewind</A></CODE> in interface <CODE><A HREF="../../../org/geotools/axis/TickIterator.html" title="interface in org.geotools.axis">TickIterator</A></CODE></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="refresh()"><!-- --></A><H3>refresh</H3><PRE>public void <B>refresh</B>()</PRE><DL><DD>Reset the iterator on its first tick. If some axis properies have changed (e.g. minimum and/or maximum values), then the new settings are taken in account. This <A HREF="../../../org/geotools/axis/Axis2D.TickIterator.html#refresh()"><CODE>refresh()</CODE></A> method help to reduce garbage-collection by constructing an object only once and reuse it for each axis's rendering.<P><DD><DL></DL></DD><DD><DL></DL></DD></DL><HR><A NAME="getLocale()"><!-- --></A><H3>getLocale</H3><PRE>public <A HREF="http://java.sun.com/j2se/1.4/docs/api/java/util/Locale.html" title="class or interface in java.util">Locale</A> <B>getLocale</B>()</PRE><DL><DD>Returns the locale used for formatting tick labels.<P><DD><DL><DT><B>Specified by:</B><DD><CODE><A HREF="../../../org/geotools/axis/TickIterator.html#getLocale()">getLocale</A></CODE> in interface <CODE><A HREF="../../../org/geotools/axis/TickIterator.html" title="interface in org.geotools.axis">TickIterator</A></CODE></DL></DD><DD><DL></DL></DD></DL><!-- ========= END OF CLASS DATA ========= --><HR><!-- ======= START OF BOTTOM NAVBAR ====== --><A NAME="navbar_bottom"><!-- --></A><A HREF="#skip-navbar_bottom" title="Skip navigation links"></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""><TR><TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Axis2D.TickIterator.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD> </TR></TABLE></TD><TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM></EM></TD></TR><TR><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../org/geotools/axis/Axis2D.html" title="class in org.geotools.axis"><B>PREV CLASS</B></A> <A HREF="../../../org/geotools/axis/DateGraduation.html" title="class in org.geotools.axis"><B>NEXT CLASS</B></A></FONT></TD><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html" target="_top"><B>FRAMES</B></A> <A HREF="Axis2D.TickIterator.html" target="_top"><B>NO FRAMES</B></A> <SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--></SCRIPT><NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A></NOSCRIPT></FONT></TD></TR><TR><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD></TR></TABLE><A NAME="skip-navbar_bottom"></A><!-- ======== END OF BOTTOM NAVBAR ======= --><HR>Copyright © 1996-2007 <a href="http://www.geotools.org">Geotools</a>. All Rights Reserved.</BODY></HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -