-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from pinetree408/parser
Parser
- Loading branch information
Showing
2 changed files
with
242 additions
and
247 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
[Parser] | ||
class parser | ||
|
||
class | ||
public Arch_Channel | ||
public LogData | ||
variable | ||
private DocumentBuilderFactory dbf | ||
private DocumentBuilder xml_parser | ||
private Document xml_doc | ||
private ArrayList<Arch_Channel> parsed_Arch | ||
private ArrayList<LogData> parsed_LogData | ||
private String ArchitectureFile | ||
private String LogFile | ||
function | ||
public void xml_parsing(String arcitectureFile) | ||
public void log_parsing(String logFile) | ||
public ArrayList<LogData> get_parsed_LogData() | ||
public ArrayList<Arch_Channel> get_pared_Arch() | ||
private static String replaceLast(String string, String toReplace, String replacement) | ||
public void print_parsed_Arch() | ||
Oops, something went wrong.