Tabnine Logo
Proxetta._this
Code IndexAdd Tabnine to your IDE (free)

How to use
_this
method
in
jodd.proxetta.Proxetta

Best Java code snippets using jodd.proxetta.Proxetta._this (Showing top 16 results out of 315)

origin: oblac/jodd

/**
 * Specifies classloaders for loading created classes.
 * If classloader not specified, default one will be used.
 */
public T setClassLoader(final ClassLoader classLoader) {
  this.classLoader = classLoader;
  return _this();
}
origin: oblac/jodd

/**
 * Sets variable proxy class name so every time when new proxy class is created
 * its name will be different,so one classloader may load it without a problem.
 * Otherwise, sets constant proxy class name so each time created proxy
 * class will have the same name. Such class can be loaded only once by a classloader.
 * <p>
 * This prevents "<code>java.lang.LinkageError: duplicate class definition</code>" errors.
 */
public T setVariableClassName(final boolean variableClassName) {
  this.variableClassName = variableClassName;
  return _this();
}
origin: oblac/jodd

/**
 * Specifies custom classname suffix to be added to the class name of created proxy.
 * Warning: when class name suffix is not used, full classname has to be
 * specified that differs from target class name.
 */
public T setClassNameSuffix(final String suffix) {
  this.classNameSuffix = suffix;
  return _this();
}
origin: oblac/jodd

/**
 * Specifies 'forced' mode. If <code>true</code>, new proxy class will be created even if there are no
 * matching pointcuts. If <code>false</code>, new proxy class will be created only if there is at least one
 * matching pointcut - otherwise, original class will be returned.
 */
public T setForced(final boolean forced) {
  this.forced = forced;
  return _this();
}
origin: oblac/jodd

public T setDebugFolder(final File debugFolder) {
  this.debugFolder = debugFolder;
  return _this();
}
origin: oblac/jodd

/**
 * Specifies the debug folder where all created classes will be
 * written to, for debugging purposes.
 */
public T setDebugFolder(final String debugFolder) {
  this.debugFolder = new File(debugFolder);
  return _this();
}
origin: oblac/jodd

/**
 * Adds an aspect.
 */
public T withAspect(final A proxyAspect) {
  proxyAspectList.add(proxyAspect);
  return _this();
}
origin: oblac/jodd

public T withAspects(final A... aspects) {
  Collections.addAll(proxyAspectList, aspects);
  return _this();
}
origin: org.jodd/jodd-proxetta

/**
 * Sets variable proxy class name so every time when new proxy class is created
 * its name will be different,so one classloader may load it without a problem.
 * Otherwise, sets constant proxy class name so each time created proxy
 * class will have the same name. Such class can be loaded only once by a classloader.
 * <p>
 * This prevents "<code>java.lang.LinkageError: duplicate class definition</code>" errors.
 */
public T setVariableClassName(final boolean variableClassName) {
  this.variableClassName = variableClassName;
  return _this();
}
origin: org.jodd/jodd-proxetta

/**
 * Specifies 'forced' mode. If <code>true</code>, new proxy class will be created even if there are no
 * matching pointcuts. If <code>false</code>, new proxy class will be created only if there is at least one
 * matching pointcut - otherwise, original class will be returned.
 */
public T setForced(final boolean forced) {
  this.forced = forced;
  return _this();
}
origin: org.jodd/jodd-proxetta

/**
 * Specifies classloaders for loading created classes.
 * If classloader not specified, default one will be used.
 */
public T setClassLoader(final ClassLoader classLoader) {
  this.classLoader = classLoader;
  return _this();
}
origin: org.jodd/jodd-proxetta

/**
 * Specifies custom classname suffix to be added to the class name of created proxy.
 * Warning: when class name suffix is not used, full classname has to be
 * specified that differs from target class name.
 */
public T setClassNameSuffix(final String suffix) {
  this.classNameSuffix = suffix;
  return _this();
}
origin: org.jodd/jodd-proxetta

public T setDebugFolder(final File debugFolder) {
  this.debugFolder = debugFolder;
  return _this();
}
origin: org.jodd/jodd-proxetta

/**
 * Adds an aspect.
 */
public T withAspect(final A proxyAspect) {
  proxyAspectList.add(proxyAspect);
  return _this();
}
origin: org.jodd/jodd-proxetta

/**
 * Specifies the debug folder where all created classes will be
 * written to, for debugging purposes.
 */
public T setDebugFolder(final String debugFolder) {
  this.debugFolder = new File(debugFolder);
  return _this();
}
origin: org.jodd/jodd-proxetta

public T withAspects(final A... aspects) {
  Collections.addAll(proxyAspectList, aspects);
  return _this();
}
jodd.proxettaProxetta_this

Popular methods of Proxetta

  • proxyProxetta
    Creates a new instance of ProxyProxetta.
  • getClassLoader
    Returns specified classloader for loading created classes. If classloader is not specified, returns
  • getClassNameSuffix
  • getDebugFolder
  • isForced
  • isVariableClassName
  • proxy
    Creates ProxettaFactory with of this Proxetta.
  • wrapperProxetta
    Creates a new instance of WrapperProxetta.
  • getAspects
  • withAspect
    Adds an aspect.
  • invokeProxetta
    Creates a new instance of InvokeProxetta.
  • invokeProxetta

Popular in Java

  • Reading from database using SQL prepared statement
  • scheduleAtFixedRate (ScheduledExecutorService)
  • addToBackStack (FragmentTransaction)
  • setRequestProperty (URLConnection)
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • PrintWriter (java.io)
    Wraps either an existing OutputStream or an existing Writerand provides convenience methods for prin
  • Hashtable (java.util)
    A plug-in replacement for JDK1.5 java.util.Hashtable. This version is based on org.cliffc.high_scale
  • Iterator (java.util)
    An iterator over a sequence of objects, such as a collection.If a collection has been changed since
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • Top plugins for Android Studio
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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