Tabnine Logo
Font.setFontStyle
Code IndexAdd Tabnine to your IDE (free)

How to use
setFontStyle
method
in
org.geotools.styling.Font

Best Java code snippets using org.geotools.styling.Font.setFontStyle (Showing top 8 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
List l =
  • Codota Iconnew ArrayList()
  • Codota Iconnew LinkedList()
  • Smart code suggestions by Tabnine
}
origin: geotools/geotools

public Font createFont(
    Expression fontFamily,
    Expression fontStyle,
    Expression fontWeight,
    Expression fontSize) {
  Font font = new FontImpl();
  if (fontFamily == null) {
    throw new IllegalArgumentException("Null font family specified");
  }
  font.setFontFamily(fontFamily);
  if (fontSize == null) {
    throw new IllegalArgumentException("Null font size specified");
  }
  font.setFontSize(fontSize);
  if (fontStyle == null) {
    throw new IllegalArgumentException("Null font Style specified");
  }
  font.setFontStyle(fontStyle);
  if (fontWeight == null) {
    throw new IllegalArgumentException("Null font weight specified");
  }
  font.setFontWeight(fontWeight);
  return font;
}
origin: geotools/geotools

  font.setFontStyle(parseCssParameter(child));
} else if (res.equalsIgnoreCase("font-size")) {
  font.setFontSize(parseCssParameter(child));
origin: org.geotools/gt2-main

public Font createFont(Expression fontFamily, Expression fontStyle,
  Expression fontWeight, Expression fontSize) {
  Font font = new FontImpl();
  if (fontFamily == null) {
    throw new IllegalArgumentException("Null font family specified");	
  }
  font.setFontFamily(fontFamily);
  if (fontSize == null) {
    throw new IllegalArgumentException("Null font size specified");
  }
  font.setFontSize(fontSize);
  if (fontStyle == null) {
    throw new IllegalArgumentException("Null font Style specified");
  }
  font.setFontStyle(fontStyle);
  if (fontWeight == null) {
    throw new IllegalArgumentException("Null font weight specified");
  }
  font.setFontWeight(fontWeight);
  return font;
}
origin: org.geotools/gt-main

public Font createFont(Expression fontFamily, Expression fontStyle,
  Expression fontWeight, Expression fontSize) {
  Font font = new FontImpl();
  if (fontFamily == null) {
    throw new IllegalArgumentException("Null font family specified");	
  }
  font.setFontFamily(fontFamily);
  if (fontSize == null) {
    throw new IllegalArgumentException("Null font size specified");
  }
  font.setFontSize(fontSize);
  if (fontStyle == null) {
    throw new IllegalArgumentException("Null font Style specified");
  }
  font.setFontStyle(fontStyle);
  if (fontWeight == null) {
    throw new IllegalArgumentException("Null font weight specified");
  }
  font.setFontWeight(fontWeight);
  return font;
}
origin: org.geotools/gt2-main

font.setFontStyle(parseCssParameter(child));
origin: org.geotools/gt-main

  font.setFontFamily(parseCssParameter(child));
} else if (res.equalsIgnoreCase("font-style")) {
  font.setFontStyle(parseCssParameter(child));
} else if (res.equalsIgnoreCase("font-size")) {
  font.setFontSize(parseCssParameter(child));
origin: org.geotools/gt2-main

/**
 * Creates a defaultFont which is valid on all machines. The font is of
 * size 10, Style and Weight normal and uses a serif font.
 *
 * @return the default Font
 *
 * @throws RuntimeException DOCUMENT ME!
 */
public Font getDefaultFont() {
  Font font = new FontImpl();
  try {
    font.setFontSize(filterFactory.literal(
        new Integer(10)));
    font.setFontStyle(filterFactory.literal("normal"));
    font.setFontWeight(filterFactory.literal("normal"));
    font.setFontFamily(filterFactory.literal("Serif"));
  } catch (org.geotools.filter.IllegalFilterException ife) {
    throw new RuntimeException("Error creating font", ife);
  }
  return font;
}
origin: org.geotools/gt-widgets-swing-pending

public void apply(){
  if(font != null){
    font.setFontFamily(guiFamily.getExpression());
    font.setFontSize(guiSize.getExpression());
    font.setFontStyle(guiStyle.getExpression());
    font.setFontWeight(guiWeight.getExpression());
  }
}

org.geotools.stylingFontsetFontStyle

Popular methods of Font

  • getFamily
  • getSize
  • getStyle
  • getWeight
  • getFontFamily
  • getFontSize
  • getFontStyle
  • getFontWeight
  • setSize
  • setStyle
  • setFontFamily
  • setFontSize
  • setFontFamily,
  • setFontSize,
  • setFontWeight,
  • setWeight

Popular in Java

  • Reactive rest calls using spring rest template
  • notifyDataSetChanged (ArrayAdapter)
  • getResourceAsStream (ClassLoader)
  • getExternalFilesDir (Context)
  • Kernel (java.awt.image)
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Pattern (java.util.regex)
    Patterns are compiled regular expressions. In many cases, convenience methods such as String#matches
  • JComboBox (javax.swing)
  • IOUtils (org.apache.commons.io)
    General IO stream manipulation utilities. This class provides static utility methods for input/outpu
  • Runner (org.openjdk.jmh.runner)
  • Top 15 Vim Plugins
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