Add more methods to this dummy class for the compiler

This commit is contained in:
smallsql 2009-05-03 19:01:48 +00:00
Родитель 051d6f6e91
Коммит 40b82787c5
1 изменённых файлов: 30 добавлений и 0 удалений

Просмотреть файл

@ -52,4 +52,34 @@ public class FontManager{
return false;
}
public static boolean fontSupportsDefaultEncoding(Font f){
// TODO Auto-generated method stub
return false;
}
public static Font getCompositeFontUIResource(Font f){
// TODO Auto-generated method stub
return null;
}
public static boolean registerFont(Font font){
// TODO Auto-generated method stub
return false;
}
public static void preferLocaleFonts(){
// TODO Auto-generated method stub
}
public static void preferProportionalFonts(){
// TODO Auto-generated method stub
}
public static boolean usePlatformFontMetrics(){
// TODO Auto-generated method stub
return false;
}
}