Created
October 16, 2022 12:35
-
-
Save selvamani-k-8445/8d614c91bc91c41ea22bd861a7e62fed to your computer and use it in GitHub Desktop.
Demo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package FlyWeight; | |
public class Demo { | |
public static void show() { | |
SpreadSheet sheet = new SpreadSheet(); | |
sheet.setContent(0, 0, "Hello"); | |
sheet.setContent(1, 0, "World"); | |
sheet.setFontFamily(0, 0, "Arial"); | |
sheet.render(); | |
} | |
public static void main(String[] args) { | |
show(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment