Changeset 774 for trunk/quest-plugin-mfc/src
- Timestamp:
- 09/06/12 09:10:42 (12 years ago)
- Location:
- trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/MFCLogParser.java
r766 r774 6 6 import java.io.IOException; 7 7 import java.io.InputStreamReader; 8 import java.io.UnsupportedEncodingException; 8 9 import java.util.Collection; 9 10 import java.util.HashMap; … … 168 169 try { 169 170 saxParser = spf.newSAXParser(); 170 inputSource = new InputSource(new InputStreamReader(new FileInputStream(file)));// , 171 // "UTF-8")); 172 // } catch (UnsupportedEncodingException e) { 173 // e.printStackTrace(); 171 inputSource = new InputSource(new InputStreamReader(new FileInputStream(file), "UTF-8")); 172 } 173 catch (UnsupportedEncodingException e) { 174 // TODO handle Exception 175 e.printStackTrace(); 174 176 } 175 177 catch (ParserConfigurationException e) { -
trunk/quest-plugin-mfc/src/main/java/de/ugoe/cs/quest/plugin/mfc/eventcore/WindowsMessage.java
r655 r774 1 1 package de.ugoe.cs.quest.plugin.mfc.eventcore; 2 2 3 import java.io.Serializable; 3 4 import java.util.HashMap; 4 5 import java.util.Map; … … 16 17 * 17 18 */ 18 public class WindowsMessage { 19 public class WindowsMessage implements Serializable { 20 21 /** 22 * <p> 23 * Id for object serialization. 24 * </p> 25 */ 26 private static final long serialVersionUID = 1L; 19 27 20 28 /**
Note: See TracChangeset
for help on using the changeset viewer.