Skip to content

Commit 0204cbc

Browse files
author
Alexander Lippling
committed
Merge branch 'gebhardt-master'
2 parents 51c0c83 + e5aaee6 commit 0204cbc

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

src/main/java/com/sap/prd/mobile/ios/mios/xcodeprojreader/Element.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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;

src/main/java/com/sap/prd/mobile/ios/mios/xcodeprojreader/Plist.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,28 @@
1919
*/
2020
package 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+
*/
2225
public 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
}

0 commit comments

Comments
 (0)