Created
April 30, 2013 17:43
-
-
Save edipofederle/5490437 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| public class Operations { | |
| private DocumentManager doc; | |
| private ClassOperations classOperation; | |
| public Operations(DocumentManager doc2) { | |
| this.doc = doc2; | |
| createClassOperation(); | |
| } | |
| private void createClassOperation() { | |
| this.classOperation = new ClassOperations(doc); | |
| } | |
| public ClassOperations forClass() { return classOperation; } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment