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

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

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

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.setFontSize(parseCssParameter(child));
} else if (res.equalsIgnoreCase("font-weight")) {
  font.setFontWeight(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.setFontWeight(parseCssParameter(child));
origin: org.geotools/gt-main

  font.setFontSize(parseCssParameter(child));
} else if (res.equalsIgnoreCase("font-weight")) {
  font.setFontWeight(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.stylingFontsetFontWeight

Popular methods of Font

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

Popular in Java

  • Making http post requests using okhttp
  • onRequestPermissionsResult (Fragment)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • putExtra (Intent)
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • BufferedInputStream (java.io)
    A BufferedInputStream adds functionality to another input stream-namely, the ability to buffer the i
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • Proxy (java.net)
    This class represents proxy server settings. A created instance of Proxy stores a type and an addres
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • Response (javax.ws.rs.core)
    Defines the contract between a returned instance and the runtime when an application needs to provid
  • Top Vim plugins
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