Searched refs:Doc (Results 1 - 25 of 46) sorted by relevance

12

/openjdk7/jdk/src/share/classes/javax/print/
H A DMultiDoc.java32 * than one piece of print data for a Print Job. "Doc" is a short,
92 * until it successfully obtains the current Doc object. The print service proxy
122 public Doc getDoc() throws IOException;
H A DDoc.java36 * Interface Doc specifies the interface for an object that supplies one piece
37 * of print data for a Print Job. "Doc" is a short, easy-to-pronounce term
39 * object that implements interface Doc, and the Print Job calls methods on
40 * that object to obtain the print data. The Doc interface lets a Print Job:
61 * Each method in an implementation of interface Doc is permitted always to
78 * Interface Doc affords considerable implementation flexibility. The print data
90 * interface Doc must be designed to be multiple thread safe.
93 * Doc.
95 * If print data is obtained from the client as a stream, by calling Doc's
104 * a stream does not mean that it will, with the implications that Doc
110 public interface Doc { interface
[all...]
H A DDocPrintJob.java173 public void print(Doc doc, PrintRequestAttributeSet attributes)
H A DSimpleDoc.java38 * This class is an implementation of interface <code>Doc</code> that can
44 * Doc specification as follows:
48 * <li>ensures multiple threads can access the Doc
63 public final class SimpleDoc implements Doc {
114 * @return Doc flavor.
161 * The <code>Doc</code> implementation is required to support this
209 * The <code>Doc</code> implementation is required to support this
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DTextTag.java43 protected final Doc holder;
48 public TextTag(Doc holder, String text) {
64 public Doc holder() {
H A DIndexBuilder.java52 private Map<Character,List<Doc>> indexmap = new HashMap<Character,List<Doc>>();
71 private class DocComparator implements Comparator<Doc> {
72 public int compare(Doc d1, Doc d2) {
127 for (Iterator<List<Doc>> it = indexmap.values().iterator(); it.hasNext(); ) {
188 protected void adjustIndexMap(Doc[] elements) {
196 List<Doc> list = indexmap.get(unicode);
198 list = new ArrayList<Doc>();
209 protected boolean shouldAddToIndexMap(Doc elemen
[all...]
H A DDeprecatedAPIListBuilder.java57 private List<List<Doc>> deprecatedLists;
66 deprecatedLists = new ArrayList<List<Doc>>();
68 deprecatedLists.add(i, new ArrayList<Doc>());
127 private void composeDeprecatedList(List<Doc> list, MemberDoc[] members) {
146 * Return the list of deprecated Doc objects of a given type.
150 public List<Doc> getList(int type) {
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DPackageDoc.java40 public interface PackageDoc extends Doc {
H A DProgramElementDoc.java39 public interface ProgramElementDoc extends Doc {
H A DRootDoc.java38 public interface RootDoc extends Doc, DocErrorReporter {
H A DTag.java45 * @see Doc#tags()
61 * Return the containing {@link Doc} of this Tag element.
63 Doc holder();
109 * <code>This is a {&#064;link Doc commentlabel} example.</code>
116 * class <code>Doc</code> and label "commentlabel"
H A DDoc.java34 * run of javadoc. All Doc objects are unique, that is, they
41 public interface Doc extends Comparable<Object> { interface in inherits:Comparable
50 * Return all tags in this Doc item.
53 * this Doc item.
59 * this Doc item.
62 * this Doc item of kind "@serial" will be returned.
71 * Return the see also tags in this Doc item.
133 * Returns the non-qualified name of this Doc item.
155 * Is this Doc item a field (but not an enum constant)?
162 * Is this Doc ite
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/
H A DDeprecatedTaglet.java50 public TagletOutput getTagletOutput(Doc holder, TagletWriter writer) {
H A DTaglet.java145 * Given a <code>Doc</code> object, check if it holds any tags of
148 * @param holder a {@link Doc} object holding the custom tag.
153 public abstract TagletOutput getTagletOutput(Doc holder, TagletWriter writer) throws IllegalArgumentException;
H A DTagletWriter.java63 protected abstract TagletOutput deprecatedTagOutput(Doc doc);
104 protected abstract TagletOutput seeTagOutput(Doc holder, SeeTag[] seeTags);
163 * @param doc the Doc that we are print tags for.
168 public static void genTagOuput(TagletManager tagletManager, Doc doc,
254 public abstract TagletOutput commentTagsToOutput(Doc holderDoc, Tag[] tags);
270 Doc holderDoc, Tag[] tags, boolean isFirstSentence);
H A DBaseTaglet.java141 public TagletOutput getTagletOutput(Doc holder, TagletWriter writer) {
H A DLegacyTaglet.java127 public TagletOutput getTagletOutput(Doc holder, TagletWriter writer)
H A DReturnTaglet.java75 public TagletOutput getTagletOutput(Doc holder, TagletWriter writer) {
H A DSeeTaglet.java63 public TagletOutput getTagletOutput(Doc holder, TagletWriter writer) {
H A DSimpleTaglet.java211 public TagletOutput getTagletOutput(Doc holder, TagletWriter writer) {
/openjdk7/jdk/src/share/classes/sun/print/
H A DPageableDoc.java35 import javax.print.Doc;
40 public class PageableDoc implements Doc {
/openjdk7/langtools/test/com/sun/javadoc/testTagHolderMethod/
H A DTestTagHolderMethod.java58 private static void checkHolders(Doc[] holders) throws Exception {
60 Doc holder = holders[i];
64 throw new Exception("The holder method does not return the correct Doc object.");
/openjdk7/jdk/test/javax/print/attribute/autosense/
H A DPrintAutoSenseData.java73 Doc doc = new URLDoc(fileName, this.flavor);
93 class URLDoc implements Doc
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DTagletWriterImpl.java71 public TagletOutput deprecatedTagOutput(Doc doc) {
153 public TagletOutput seeTagOutput(Doc holder, SeeTag[] seeTags) {
277 public TagletOutput commentTagsToOutput(Doc holderDoc, Tag[] tags) {
285 Doc holderDoc, Tag[] tags, boolean isFirstSentence) {
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DTagImpl.java43 * @see Doc#tags()
79 * Return the containing {@link Doc} of this Tag element.
81 public Doc holder() {
140 * documentation comment {@link Doc {@link Doc commentlabel}}",
141 * where inside the inner braces, the first "Doc" carries exctly the same
145 * comment" and second element as SeeTagImpl with referenced class as "Doc"

Completed in 96 milliseconds

12