com.sun.tools.doclets.Taglet Java Examples

The following examples show how to use com.sun.tools.doclets.Taglet. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ReferenceTaglet.java    From rapidminer-studio with GNU Affero General Public License v3.0 5 votes vote down vote up
public static void register(Map<String, Taglet> tagletMap) {
	ReferenceTaglet tag = new ReferenceTaglet();
	Taglet t = tagletMap.get(tag.getName());
	if (t != null) {
		tagletMap.remove(tag.getName());
	}
	tagletMap.put(tag.getName(), tag);
}
 
Example #2
Source File: UnderlineTaglet.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Register this Taglet.
 * @param tagletMap  the map to register this tag to.
 */
public static void register(Map tagletMap) {
   UnderlineTaglet tag = new UnderlineTaglet();
   Taglet t = (Taglet) tagletMap.get(tag.getName());
   if (t != null) {
       tagletMap.remove(tag.getName());
   }
   tagletMap.put(tag.getName(), tag);
}
 
Example #3
Source File: EndFormatTaglet.java    From gemfirexd-oss with Apache License 2.0 5 votes vote down vote up
/**
 * Register this Taglet.
 * @param tagletMap
 */
public static void register(Map tagletMap) {
   EndFormatTaglet tag = new EndFormatTaglet();
   Taglet t = (Taglet) tagletMap.get(tag.getName());
   if (t != null) {
       tagletMap.remove(tag.getName());
   }
   tagletMap.put(tag.getName(), tag);
}
 
Example #4
Source File: PurposeTaglet.java    From gemfirexd-oss with Apache License 2.0 5 votes vote down vote up
/**
 * Register this Taglet.
 * @param tagletMap
 */
public static void register(Map tagletMap) {
   PurposeTaglet tag = new PurposeTaglet();
   Taglet t = (Taglet) tagletMap.get(tag.getName());
   if (t != null) {
       tagletMap.remove(tag.getName());
   }
   tagletMap.put(tag.getName(), tag);
}
 
Example #5
Source File: DiskLayoutTaglet.java    From gemfirexd-oss with Apache License 2.0 5 votes vote down vote up
/**
 * Register this Taglet.
 * @param tagletMap
 */
public static void register(Map tagletMap) {
   DiskLayoutTaglet tag = new DiskLayoutTaglet();
   Taglet t = (Taglet) tagletMap.get(tag.getName());
   if (t != null) {
       tagletMap.remove(tag.getName());
   }
   tagletMap.put(tag.getName(), tag);
}
 
Example #6
Source File: FormatIdTaglet.java    From gemfirexd-oss with Apache License 2.0 5 votes vote down vote up
/**
 * Register this Taglet.
 * @param tagletMap
 */
public static void register(Map tagletMap) {
   FormatIdTaglet tag = new FormatIdTaglet();
   Taglet t = (Taglet) tagletMap.get(tag.getName());
   if (t != null) {
       tagletMap.remove(tag.getName());
   }
   tagletMap.put(tag.getName(), tag);
}
 
Example #7
Source File: UpgradeTaglet.java    From gemfirexd-oss with Apache License 2.0 5 votes vote down vote up
/**
 * Register this Taglet.
 * @param tagletMap
 */
public static void register(Map tagletMap) {
   UpgradeTaglet tag = new UpgradeTaglet();
   Taglet t = (Taglet) tagletMap.get(tag.getName());
   if (t != null) {
       tagletMap.remove(tag.getName());
   }
   tagletMap.put(tag.getName(), tag);
}
 
Example #8
Source File: Check.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Register this taglet.
 *
 * @param tagletMap the map to register this tag to.
 */
@SuppressWarnings("unchecked")
public static void register(Map tagletMap) {
    Check tag = new Check();
    Taglet t = (Taglet) tagletMap.get(tag.getName());
    if (t != null) {
        tagletMap.remove(tag.getName());
    }
    tagletMap.put(tag.getName(), tag);
}
 
Example #9
Source File: UnderlineTaglet.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Register this Taglet.
 * @param tagletMap  the map to register this tag to.
 */
public static void register(Map tagletMap) {
   UnderlineTaglet tag = new UnderlineTaglet();
   Taglet t = (Taglet) tagletMap.get(tag.getName());
   if (t != null) {
       tagletMap.remove(tag.getName());
   }
   tagletMap.put(tag.getName(), tag);
}
 
Example #10
Source File: ToDoTaglet.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Register this Taglet.
 * @param tagletMap  the map to register this tag to.
 */
public static void register(Map tagletMap) {
   ToDoTaglet tag = new ToDoTaglet();
   Taglet t = (Taglet) tagletMap.get(tag.getName());
   if (t != null) {
       tagletMap.remove(tag.getName());
   }
   tagletMap.put(tag.getName(), tag);
}
 
Example #11
Source File: UnderlineTaglet.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Register this Taglet.
 * @param tagletMap  the map to register this tag to.
 */
public static void register(Map tagletMap) {
   UnderlineTaglet tag = new UnderlineTaglet();
   Taglet t = (Taglet) tagletMap.get(tag.getName());
   if (t != null) {
       tagletMap.remove(tag.getName());
   }
   tagletMap.put(tag.getName(), tag);
}
 
Example #12
Source File: SampleCodeTaglet.java    From aws-sdk-java-samples with Apache License 2.0 5 votes vote down vote up
public static void register(final Map<String, Taglet> tagletMap) {
    Taglet taglet = tagletMap.get(SAMPLE_TAG);
    if (taglet != null) {
        tagletMap.remove(SAMPLE_TAG);
    }
    tagletMap.put(SAMPLE_TAG, new SampleCodeTaglet());
}
 
Example #13
Source File: MathTaglet.java    From rapidminer-studio with GNU Affero General Public License v3.0 5 votes vote down vote up
public static void register(Map<String, Taglet> tagletMap) {
	MathTaglet tag = new MathTaglet();
	Taglet t = tagletMap.get(tag.getName());
	if (t != null) {
		tagletMap.remove(tag.getName());
	}
	tagletMap.put(tag.getName(), tag);
}
 
Example #14
Source File: XMLExampleTaglet.java    From rapidminer-studio with GNU Affero General Public License v3.0 5 votes vote down vote up
public static void register(Map<String, Taglet> tagletMap) {
	XMLExampleTaglet tag = new XMLExampleTaglet();
	Taglet t = tagletMap.get(tag.getName());
	if (t != null) {
		tagletMap.remove(tag.getName());
	}
	tagletMap.put(tag.getName(), tag);
}
 
Example #15
Source File: UnderlineTaglet.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Register this Taglet.
 * @param tagletMap  the map to register this tag to.
 */
public static void register(Map tagletMap) {
   UnderlineTaglet tag = new UnderlineTaglet();
   Taglet t = (Taglet) tagletMap.get(tag.getName());
   if (t != null) {
       tagletMap.remove(tag.getName());
   }
   tagletMap.put(tag.getName(), tag);
}
 
Example #16
Source File: CiteTaglet.java    From rapidminer-studio with GNU Affero General Public License v3.0 5 votes vote down vote up
public static void register(Map<String, Taglet> tagletMap) {
	CiteTaglet tag = new CiteTaglet();
	Taglet t = tagletMap.get(tag.getName());
	if (t != null) {
		tagletMap.remove(tag.getName());
	}
	tagletMap.put(tag.getName(), tag);
}
 
Example #17
Source File: RefTaglet.java    From rapidminer-studio with GNU Affero General Public License v3.0 5 votes vote down vote up
public static void register(Map<String, Taglet> tagletMap) {
	RefTaglet tag = new RefTaglet();
	Taglet t = tagletMap.get(tag.getName());
	if (t != null) {
		tagletMap.remove(tag.getName());
	}
	tagletMap.put(tag.getName(), tag);
}
 
Example #18
Source File: EndFormatTaglet.java    From gemfirexd-oss with Apache License 2.0 5 votes vote down vote up
/**
 * Register this Taglet.
 * @param tagletMap
 */
public static void register(Map tagletMap) {
   EndFormatTaglet tag = new EndFormatTaglet();
   Taglet t = (Taglet) tagletMap.get(tag.getName());
   if (t != null) {
       tagletMap.remove(tag.getName());
   }
   tagletMap.put(tag.getName(), tag);
}
 
Example #19
Source File: PurposeTaglet.java    From gemfirexd-oss with Apache License 2.0 5 votes vote down vote up
/**
 * Register this Taglet.
 * @param tagletMap
 */
public static void register(Map tagletMap) {
   PurposeTaglet tag = new PurposeTaglet();
   Taglet t = (Taglet) tagletMap.get(tag.getName());
   if (t != null) {
       tagletMap.remove(tag.getName());
   }
   tagletMap.put(tag.getName(), tag);
}
 
Example #20
Source File: DiskLayoutTaglet.java    From gemfirexd-oss with Apache License 2.0 5 votes vote down vote up
/**
 * Register this Taglet.
 * @param tagletMap
 */
public static void register(Map tagletMap) {
   DiskLayoutTaglet tag = new DiskLayoutTaglet();
   Taglet t = (Taglet) tagletMap.get(tag.getName());
   if (t != null) {
       tagletMap.remove(tag.getName());
   }
   tagletMap.put(tag.getName(), tag);
}
 
Example #21
Source File: FormatIdTaglet.java    From gemfirexd-oss with Apache License 2.0 5 votes vote down vote up
/**
 * Register this Taglet.
 * @param tagletMap
 */
public static void register(Map tagletMap) {
   FormatIdTaglet tag = new FormatIdTaglet();
   Taglet t = (Taglet) tagletMap.get(tag.getName());
   if (t != null) {
       tagletMap.remove(tag.getName());
   }
   tagletMap.put(tag.getName(), tag);
}
 
Example #22
Source File: UpgradeTaglet.java    From gemfirexd-oss with Apache License 2.0 5 votes vote down vote up
/**
 * Register this Taglet.
 * @param tagletMap
 */
public static void register(Map tagletMap) {
   UpgradeTaglet tag = new UpgradeTaglet();
   Taglet t = (Taglet) tagletMap.get(tag.getName());
   if (t != null) {
       tagletMap.remove(tag.getName());
   }
   tagletMap.put(tag.getName(), tag);
}
 
Example #23
Source File: BaleenJavadoc.java    From baleen with Apache License 2.0 5 votes vote down vote up
/** Register the Taglet */
public static void register(Map<String, Taglet> tagletMap) {
  if (tagletMap.containsKey(NAME)) {
    tagletMap.remove(NAME);
  }

  tagletMap.put(NAME, new BaleenJavadoc());
}
 
Example #24
Source File: ExternalResources.java    From baleen with Apache License 2.0 5 votes vote down vote up
/** Register the Taglet */
public static void register(Map<String, Taglet> tagletMap) {
  if (tagletMap.containsKey(NAME)) {
    tagletMap.remove(NAME);
  }

  tagletMap.put(NAME, new ExternalResources());
}
 
Example #25
Source File: ConfigurationParameters.java    From baleen with Apache License 2.0 5 votes vote down vote up
/** Register the Taglet */
public static void register(Map<String, Taglet> tagletMap) {
  if (tagletMap.containsKey(NAME)) {
    tagletMap.remove(NAME);
  }

  tagletMap.put(NAME, new ConfigurationParameters());
}
 
Example #26
Source File: IgniteLinkTaglet.java    From ignite with Apache License 2.0 5 votes vote down vote up
/**
 * Register this Taglet.
 *
 * @param tagletMap the map to register this tag to.
 */
public static void register(Map<String, IgniteLinkTaglet> tagletMap) {
    IgniteLinkTaglet tag = new IgniteLinkTaglet();

    Taglet t = tagletMap.get(tag.getName());

    if (t != null)
        tagletMap.remove(tag.getName());

    tagletMap.put(tag.getName(), tag);
}
 
Example #27
Source File: ExampleTaglet.java    From video_export_processing with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Register this Taglet.
 * @param tagletMap  the map to register this tag to.
 */
public static void register(Map tagletMap) {
   ExampleTaglet tag = new ExampleTaglet();
   Taglet t = (Taglet) tagletMap.get(tag.getName());
   if (t != null) {
       tagletMap.remove(tag.getName());
   }
   tagletMap.put(tag.getName(), tag);
}
 
Example #28
Source File: UnderlineTaglet.java    From openjdk-8-source with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Register this Taglet.
 * @param tagletMap  the map to register this tag to.
 */
public static void register(Map tagletMap) {
   UnderlineTaglet tag = new UnderlineTaglet();
   Taglet t = (Taglet) tagletMap.get(tag.getName());
   if (t != null) {
       tagletMap.remove(tag.getName());
   }
   tagletMap.put(tag.getName(), tag);
}
 
Example #29
Source File: Check.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Register this taglet.
 *
 * @param tagletMap the map to register this tag to.
 */
@SuppressWarnings("unchecked")
public static void register(Map tagletMap) {
    Check tag = new Check();
    Taglet t = (Taglet) tagletMap.get(tag.getName());
    if (t != null) {
        tagletMap.remove(tag.getName());
    }
    tagletMap.put(tag.getName(), tag);
}
 
Example #30
Source File: ToDoTaglet.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
/**
 * Register this Taglet.
 * @param tagletMap  the map to register this tag to.
 */
public static void register(Map tagletMap) {
   ToDoTaglet tag = new ToDoTaglet();
   Taglet t = (Taglet) tagletMap.get(tag.getName());
   if (t != null) {
       tagletMap.remove(tag.getName());
   }
   tagletMap.put(tag.getName(), tag);
}