* Initial grouping of messages_en.yml (thanks to input by @Twonox) * Change MessageFileVerifier to only do verification - no writing * Create classes for sorting and grouping messages as per the messages_en file
14 lines
279 B
Java
14 lines
279 B
Java
package tools.messages;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Represents a section of one or more consecutive comment lines in a file.
|
|
*/
|
|
public class MessageFileComments extends MessageFileElement {
|
|
|
|
public MessageFileComments(List<String> lines) {
|
|
super(lines);
|
|
}
|
|
}
|