package lectures.oegraphics;
import util.annotations.WebDocuments;

import lectures.graphics.AStringShape;
import lectures.graphics.StringShape;
import bus.uigen.OEFrame;
import bus.uigen.ObjectEditor;

@WebDocuments({"Lectures/Oegraphics.pptx", "Lectures/Oegraphics.pdf", "Videos/Oegraphics.avi"})
public class StringShapeHelloWorld {
    public static void main(String[] args) {
        StringShape helloShape = new AStringShape("hello world", 100, 100);
        OEFrame oeFrame = ObjectEditor.edit(helloShape);        
    }
}