Merge branch 'master' of https://source.jalview.org/git/jalviewjs.git
[jalviewjs.git] / src / javajs / api / FontManager.java
index 7419524..cc442c4 100644 (file)
@@ -1,23 +1,23 @@
-package javajs.api;\r
-\r
-import javajs.awt.Font;\r
-\r
-/**\r
- * A generic interface for font queries.\r
- * In JSmol it is handled by org.jmol.api.ApiPlatform\r
- */\r
-\r
-public interface FontManager {\r
-\r
-  int fontStringWidth(Font font, String text);\r
-\r
-  int getFontAscent(Object fontMetrics);\r
-\r
-  int getFontDescent(Object fontMetrics);\r
-\r
-  Object getFontMetrics(Font font, Object graphics);\r
-\r
-  Object newFont(String fontFace, boolean isBold, boolean isItalic, float fontSize);\r
-\r
-\r
-}\r
+package javajs.api;
+
+import javajs.awt.Font;
+
+/**
+ * A generic interface for font queries.
+ * In JSmol it is handled by org.jmol.api.ApiPlatform
+ */
+
+public interface FontManager {
+
+  int fontStringWidth(Font font, String text);
+
+  int getFontAscent(Object fontMetrics);
+
+  int getFontDescent(Object fontMetrics);
+
+  Object getFontMetrics(Font font, Object graphics);
+
+  Object newFont(String fontFace, boolean isBold, boolean isItalic, float fontSize);
+
+
+}