Skip to content

Commit 98809c8

Browse files
committed
Add Javadocs change max row number
1 parent 32d1540 commit 98809c8

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

base/src/main/java/com/smartdevicelink/managers/ManagerUtility.java

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,24 @@ public static int getMaxNumberOfMainFieldLines(WindowCapability windowCapability
9999
return highestFound;
100100
}
101101

102+
/**
103+
* Method to get a list of all available text fields
104+
*
105+
* @return list of all available text fields with CID1SET Character Set
106+
*/
102107
public static List<TextField> getAllTextFields() {
103108
List<TextField> allTextFields = new ArrayList<>();
104109
for (TextFieldName name : TextFieldName.values()) {
105-
allTextFields.add(new TextField(name, CharacterSet.CID1SET, 500, 500));
110+
allTextFields.add(new TextField(name, CharacterSet.CID1SET, 500, 8));
106111
}
107112
return allTextFields;
108113
}
109114

115+
/**
116+
* Method to get a list of all available Image fields
117+
*
118+
* @return list of all available Image fields with GRAPHIC_BMP, GRAPHIC_JPEG, GRAPHIC_PNG File Types
119+
*/
110120
public static List<ImageField> getAllImageFields() {
111121
List<ImageField> allImageFields = new ArrayList<>();
112122
List<FileType> allImageFileTypes = Arrays.asList(FileType.GRAPHIC_BMP, FileType.GRAPHIC_JPEG, FileType.GRAPHIC_PNG);

0 commit comments

Comments
 (0)