Package com.sun.tools.doclets.internal.toolkit.taglets

Examples of com.sun.tools.doclets.internal.toolkit.taglets.LegacyTaglet


  }

  public JAXRSDoclet(RootDoc rootDoc) {
    super(rootDoc);
    if (htmlDoclet.configuration.tagletManager != null) {
      htmlDoclet.configuration.tagletManager.addCustomTag(new LegacyTaglet(new ResponseHeaderTaglet()));
      htmlDoclet.configuration.tagletManager.addCustomTag(new LegacyTaglet(new RequestHeaderTaglet()));
      htmlDoclet.configuration.tagletManager.addCustomTag(new LegacyTaglet(new HTTPTaglet()));
      htmlDoclet.configuration.tagletManager.addCustomTag(new LegacyTaglet(new ReturnWrappedTaglet()));
      htmlDoclet.configuration.tagletManager.addCustomTag(new LegacyTaglet(new InputWrappedTaglet()));
      htmlDoclet.configuration.tagletManager.addCustomTag(new LegacyTaglet(new IncludeTaglet()));
      htmlDoclet.configuration.tagletManager.addCustomTag(new ExcludeTaglet());
    }
  }
View Full Code Here


         if ( tagletMap.containsKey(tag))
             tagletMap.remove(tag);
      
       }
      
      tagletMap.put(DISPLAY_COMPONENT, new LegacyTaglet( createDisplayComponentTaglet()));
      tagletMap.put(CREATE_RESOURCES, new LegacyTaglet( createCreateResourceTaglet()));
    
    }
    catch (Throwable t)
    {
       System.out.println("Throwable occured " + t);
View Full Code Here

TOP

Related Classes of com.sun.tools.doclets.internal.toolkit.taglets.LegacyTaglet

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.