Tabnine Logo
Reflection$Setter
Code IndexAdd Tabnine to your IDE (free)

How to use
Reflection$Setter
in
php.runtime.annotation

Best Java code snippets using php.runtime.annotation.Reflection$Setter (Showing top 20 results out of 315)

origin: jphp-group/jphp

@Setter
protected void setTextAntialiasing(Memory value) {
  Object _value = RenderingHints.VALUE_TEXT_ANTIALIAS_OFF;
  switch (value.toString().toUpperCase()) {
    case "GASP": _value = RenderingHints.VALUE_TEXT_ANTIALIAS_GASP; break;
    case "LCD_HBGR": _value = RenderingHints.VALUE_TEXT_ANTIALIAS_LCD_HBGR; break;
    case "LCD_HRGB": _value = RenderingHints.VALUE_TEXT_ANTIALIAS_LCD_HRGB; break;
    case "LCD_VBGR": _value = RenderingHints.VALUE_TEXT_ANTIALIAS_LCD_VBGR; break;
    case "LCD_VRGB": _value = RenderingHints.VALUE_TEXT_ANTIALIAS_LCD_VRGB; break;
    default:
      if (value.toBoolean()) {
        _value = RenderingHints.VALUE_TEXT_ANTIALIAS_ON;
      }
  }
  gc.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, _value);
}
origin: jphp-group/jphp

String name = method.getAnnotation(Reflection.Setter.class).value();
origin: jphp-group/jphp

@Setter
public void setNamespace(String namespace) {
  String[] tmp = StringUtils.split(getName(), Information.NAMESPACE_SEP_CHAR);
  switch (tmp.length) {
    case 0:
      setName(namespace + Information.NAMESPACE_SEP_CHAR);
      break;
    case 1:
      setName(namespace + Information.NAMESPACE_SEP_CHAR + getName());
      break;
    default:
      setName(namespace + Information.NAMESPACE_SEP_CHAR + getShortName());
      break;
  }
}
origin: jphp-group/jphp

@Setter
public void setCatalog(String value) throws SQLException {
  connection.setCatalog(value);
}
origin: jphp-group/jphp

@Setter
public void setTransactionIsolation(int value) throws SQLException {
  connection.setTransactionIsolation(value);
}
origin: jphp-group/jphp

@Setter
public void setReadOnly(boolean value) throws SQLException {
  connection.setReadOnly(value);
}
origin: jphp-group/jphp

@Setter
public void setFill(@Nullable Color color) {
  gc.setPaint(color);
}
origin: jphp-group/jphp

@Setter
public void setReturnTypeHint(HintType returnTypeHint) {
  this.returnTypeHint = returnTypeHint;
}
origin: jphp-group/jphp

@Setter
public void setFinal(boolean aFinal) {
  isFinal = aFinal;
}
origin: jphp-group/jphp

@Setter
public void setStatic(boolean aStatic) {
  isStatic = aStatic;
}
origin: jphp-group/jphp

@Setter
protected void setSslOnConnect(boolean value) {
  helper.setSSLOnConnect(value);
}
origin: jphp-group/jphp

@Setter
protected void setSocketTimeout(int timeout) {
  helper.setSocketTimeout(timeout);
}
origin: jphp-group/jphp

@Setter
protected void setSendPartial(boolean value) {
  helper.setSendPartial(value);
}
origin: jphp-group/jphp

@Setter
protected void setSslSmtpPort(String value) {
  helper.setSslSmtpPort(value);
}
origin: jphp-group/jphp

@Setter
public void setType(Type type) {
  this.type = type;
}
origin: jphp-group/jphp

@Setter
public void setIsAbstract(boolean isAbstract) {
  this.isAbstract = isAbstract;
}
origin: jphp-group/jphp

@Setter
public void setShortParentName(boolean shortParentName) {
  this.shortParentName = shortParentName;
}
origin: jphp-group/jphp

@Setter
public void setReference(boolean reference) {
  this.reference = reference;
}
origin: jphp-group/jphp

@Setter
public void setExprValue(String exprValue) {
  this.exprValue = exprValue;
}
origin: jphp-group/jphp

@Setter
public void setFollowRedirects(boolean value) throws IOException {
  ((HttpURLConnection)getWrappedObject()).setInstanceFollowRedirects(value);
}
php.runtime.annotationReflection$Setter

Most used methods

  • <init>
  • value

Popular in Java

  • Updating database using SQL prepared statement
  • getSystemService (Context)
  • getSharedPreferences (Context)
  • onRequestPermissionsResult (Fragment)
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
  • ExecutorService (java.util.concurrent)
    An Executor that provides methods to manage termination and methods that can produce a Future for tr
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • BasicDataSource (org.apache.commons.dbcp)
    Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
  • CodeWhisperer alternatives
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