Your preferences have been saved!
» Disable antialiasing for text - import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.RenderingHints; import javax.swing.JComponent; import javax.swing.JFrame; public class Main {   public static void main(String[] args) {     JFrame frame = new JFrame();     frame.add(new MyComponent());     frame.setSize(300, 300);... 04 Feb 12 » Enable antialiasing for text - import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.RenderingHints; import javax.swing.JComponent; import javax.swing.JFrame; public class Main {   public static void main(String[] args) {     JFrame frame = new JFrame();     frame.add(new MyComponent());     frame.setSize(300, 300);... 04 Feb 12 » Disable antialiasing for shapes - import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.RenderingHints; import javax.swing.JComponent; import javax.swing.JFrame; public class Main {   public static void main(String[] args) {     JFrame frame = new JFrame();     frame.add(new MyComponent());     frame.setSize(300, 300);... 04 Feb 12 » Enable antialiasing for shapes - import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.RenderingHints; import javax.swing.JComponent; import javax.swing.JFrame; public class Main {   public static void main(String[] args) {     JFrame frame = new JFrame();     frame.add(new MyComponent());     frame.setSize(300, 300);... 04 Feb 12 » Determine if antialiasing is enabled - import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.RenderingHints; import javax.swing.JComponent; import javax.swing.JFrame; public class Main {   public static void main(String[] args) {     JFrame frame = new JFrame();     frame.add(new MyComponent());     frame.setSize(300, 300);... 04 Feb 12