congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
Service.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
uk.org.retep.annotations.Service
constructor

Best Java code snippets using uk.org.retep.annotations.Service.<init> (Showing top 20 results out of 315)

origin: uk.org.retep.templateEngine/templateEngine

/**
 *
 * @author peter
 */
@Service( TemplateService.class )
public class XHtmlService extends AbstractTemplateService
{

  public XHtmlService()
  {
    super( ServiceType.RENDERABLE,
        "XHTML",
        "Render's a document into XHTML",
        ContentType.TEXT_HTML );
  }
  
  @Override
  public Renderer createRenderer()
  {
    return new XHtmlRenderer();
  }
}

origin: uk.org.retep.tools/jaxb

/**
 * JAXB plugin that marks a package with {@link PublicAPI}
 *
 * @author peter
 * @since 10.3
 */
@Service( RetepPluginLibrary.class )
public class PublicAPIPlugin
    extends AbstractAnnotatePackagePlugin
{

  @Override
  protected String getLocalName()
  {
    return "publicapi";
  }

  @Override
  protected Class getAnnotation()
  {
    return PublicAPI.class;
  }
}

origin: uk.org.retep.tools/jaxb

/**
 * JAXB plugin that marks a package with {@link PrivateAPI}
 *
 * @author peter
 * @since 10.3
 */
@Service( RetepPluginLibrary.class )
public class PrivateAPIPlugin
    extends AbstractAnnotatePackagePlugin
{

  @Override
  protected String getLocalName()
  {
    return "privateapi";
  }

  @Override
  protected Class getAnnotation()
  {
    return PrivateAPI.class;
  }
}

origin: uk.org.retep.templateEngine/templateEngine

/**
 *
 * @author peter
 */
@Service( TemplateService.class )
public class BBCodeService
    extends AbstractTemplateService
{

  public BBCodeService()
  {
    super(
        ServiceType.PARSABLE,
        "BBCode",
        "Bulletin Board Code" );
  }

  @Override
  public Parser createParser()
  {
    return new BBCodeParser();
  }
}

origin: uk.org.retep.templateEngine/templateEngine

/**
 *
 * @author peter
 */
@Service( TemplateService.class )
public class RTFService
    extends AbstractTemplateService
{

  public RTFService()
  {
    super(
        ServiceType.PARSABLE,
        "RTF",
        "A subset of Rich Text Format",
        ContentType.TEXT_RICHTEXT );
  }

  @Override
  public Parser createParser()
  {
    return new RTFParser();
  }
}

origin: uk.org.retep.templateEngine/templateEngine

/**
 *
 * @author peter
 */
@Service( TemplateService.class )
public class TexMathService
    extends AbstractTemplateService
{

  public TexMathService()
  {
    super(
        ServiceType.PARSABLE,
        "TexMath",
        "Tex Mathematics" );
  }

  @Override
  public Parser createParser()
  {
    return new TexMathParser();
  }

//    @Override
//    public Renderer createRenderer()
//    {
//        return new TexRenderer();
//    }
}

origin: uk.org.retep.templateEngine/templateEngine

@Service( TemplateService.class )
public class WikiService
    extends AbstractTemplateService
origin: uk.org.retep.templateEngine/templateEngine

@Service( TemplateService.class )
public class CSVService
    extends AbstractTemplateService
origin: uk.org.retep.templateEngine/templateEngine

@Service( TemplateService.class )
public class TextService
    extends AbstractTemplateService
origin: uk.org.retep.tools/random

@Service( RandomSeedGenerator.class )
public class SecureRandomSeedGenerator
    extends SecureRandom
origin: uk.org.retep.tools/jaxb

@Service( RetepPluginLibrary.class )
public class ExtendsPlugin
    extends AbstractExtImplPlugin
origin: uk.org.retep.microkernel/jndi

@Service( Module.class )
public class JNDIModule
    extends AbstractModule
origin: uk.org.retep.tools/jaxb

@Service( RetepPluginLibrary.class )
public class ImplementsPlugin
    extends AbstractExtImplPlugin
origin: uk.org.retep.tools/jaxb

@Service( RetepPluginLibrary.class )
public class PackageDocPlugin
    extends AbstractInjectionPlugin
origin: uk.org.retep.tools/jaxb

@Service( RetepPluginLibrary.class )
public class AnnotatePlugin
    extends AbstractInjectionPlugin
origin: uk.org.retep.tools/random

/**
 * A RandomSeedGenerator that will source it's seed from the /dev/random
 * device on Linux/Unix systems
 * 
 */
@Service( RandomSeedGenerator.class )
@ThreadSafe
public static class DevRandomSeedGenerator
    extends FileSeedGenerator
{
  public DevRandomSeedGenerator()
  {
    super( new File( "/dev/random" ) );
  }
  @Override
  public int getPriority()
  {
    return 30;
  }
}
origin: uk.org.retep.tools/random

  /**
   * A RandomSeedGenerator that will source it's seed from the /dev/urandom
   * device on Linux/Unix systems
   * 
   */
  @Service( RandomSeedGenerator.class )
  @ThreadSafe
  public static class DevUrandomSeedGenerator
      extends FileSeedGenerator
  {

    public DevUrandomSeedGenerator()
    {
      super( new File( "/dev/urandom" ) );
    }

    @Override
    public int getPriority()
    {
      return 40;
    }
  }
}
origin: uk.org.retep.tools/random

@Service( RandomSeedGenerator.class )
@ThreadSafe
public static class RandomOrgSeedGenerator
origin: uk.org.retep.tools/jaxb

@Service( RetepPluginLibrary.class )
@Generated( value = "com.sun.tools.xjc.Driver",
      date = "2009-12-29T06:14:44+00:00",
origin: uk.org.retep.tools/encoding

@Service( Charset.class )
@Encoding(
uk.org.retep.annotationsService<init>

Popular methods of Service

    Popular in Java

    • Start an intent from android
    • setRequestProperty (URLConnection)
    • getApplicationContext (Context)
    • onRequestPermissionsResult (Fragment)
    • BufferedReader (java.io)
      Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
    • IOException (java.io)
      Signals a general, I/O-related error. Error details may be specified when calling the constructor, a
    • InetAddress (java.net)
      An Internet Protocol (IP) address. This can be either an IPv4 address or an IPv6 address, and in pra
    • Iterator (java.util)
      An iterator over a sequence of objects, such as a collection.If a collection has been changed since
    • Loader (org.hibernate.loader)
      Abstract superclass of object loading (and querying) strategies. This class implements useful common
    • SAXParseException (org.xml.sax)
      Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
    • Top 12 Jupyter Notebook Extensions
    Tabnine Logo
    • Products

      Search for Java codeSearch for JavaScript code
    • IDE Plugins

      IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
    • Company

      About UsContact UsCareers
    • Resources

      FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
    Get Tabnine for your IDE now