mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
20 lines
648 B
Java
Generated
20 lines
648 B
Java
Generated
// Generated automatically from javafx.css.ParsedValue for testing purposes
|
|
|
|
package javafx.css;
|
|
|
|
import javafx.css.StyleConverter;
|
|
import javafx.scene.text.Font;
|
|
|
|
public class ParsedValue<V, T>
|
|
{
|
|
protected ParsedValue() {}
|
|
protected ParsedValue(V p0, StyleConverter<V, T> p1){}
|
|
protected final StyleConverter<V, T> converter = null;
|
|
protected final V value = null;
|
|
public T convert(Font p0){ return null; }
|
|
public boolean isContainsLookups(){ return false; }
|
|
public boolean isLookup(){ return false; }
|
|
public final StyleConverter<V, T> getConverter(){ return null; }
|
|
public final V getValue(){ return null; }
|
|
}
|