File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
src/main/java/com/sap/prd/mobile/ios/mios/xcodeprojreader Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,9 @@ protected ProjectFile getProjectFile()
3535 return projectFile ;
3636 }
3737
38+ /**
39+ * @return the modifiable dict representation of this element.
40+ */
3841 public Dict getDict ()
3942 {
4043 return dict ;
Original file line number Diff line number Diff line change 1919 */
2020package com .sap .prd .mobile .ios .mios .xcodeprojreader ;
2121
22+ /**
23+ * The Plist root object. An Xcode project file for example uses the plist format to store its information.
24+ */
2225public interface Plist
2326{
27+
2428 String getVersion ();
2529
2630 void setVersion (String value );
2731
32+ /**
33+ * @return the root dict of the Plist.
34+ */
2835 Dict getDict ();
2936
37+ /**
38+ * Factory method. Creates a new array but does not add it to the plist.
39+ */
3040 Array createArray ();
3141
42+ /**
43+ * Factory method. Creates a new dict but does not add it to the plist.
44+ */
3245 Dict createDict ();
3346}
You can’t perform that action at this time.
0 commit comments