Changeset 601


Ignore:
Timestamp:
08/23/12 13:43:05 (12 years ago)
Author:
pharms
Message:
  • adapted to match quest source code format
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/quest-plugin-jfc-test/src/test/java/de/ugoe/cs/quest/plugin/jfc/JFCLogParserTest.java

    r575 r601  
    1 //------------------------------------------------------------------------------------------------- 
    21// Module    : $RCSfile: ReplayReaderTest.java,v $ 
    32// Version   : $Revision: 0.0 $  $Author: Patrick $  $Date: 26.11.2011 15:10:08 $ 
     
    54// Creation  : 2011 by Patrick 
    65// Copyright : Patrick Harms, 2011 
    7 //------------------------------------------------------------------------------------------------- 
    86 
    97package de.ugoe.cs.quest.plugin.jfc; 
     
    2422import de.ugoe.cs.quest.plugin.jfc.guimodel.JFCGUIElement; 
    2523 
    26 //------------------------------------------------------------------------------------------------- 
    2724/** 
    2825 * TODO comment 
     
    3128 * @author 2011, last modified by $Author: $ 
    3229 */ 
    33 // ------------------------------------------------------------------------------------------------- 
     30public class JFCLogParserTest { 
    3431 
    35 public class JFCLogParserTest 
    36 { 
    37  
    38     // ----------------------------------------------------------------------------------------------- 
    3932    /** 
    40    * 
    41    */ 
    42     // ----------------------------------------------------------------------------------------------- 
     33     * 
     34     */ 
    4335    @Before 
    44     public void setUp() 
    45     { 
    46         //Logger.getLogger("").getHandlers()[0].setFormatter(new SimpleLogFormatter()); 
     36    public void setUp() { 
     37        // Logger.getLogger("").getHandlers()[0].setFormatter(new SimpleLogFormatter()); 
    4738    } 
    4839 
    49     // ----------------------------------------------------------------------------------------------- 
    5040    /** 
    51    * 
    52    */ 
    53     // ----------------------------------------------------------------------------------------------- 
     41     * 
     42     */ 
    5443    @Test 
    55     public void test() throws Exception 
    56     { 
     44    public void test() throws Exception { 
    5745        JFCLogParser parser = new JFCLogParser(null); 
    5846        parser.parseFile(new File(ClassLoader.getSystemResource("trace.xml").getFile())); 
     
    7462        System.err.println("}"); 
    7563        System.err.println("\n\n"); 
    76          
     64 
    7765        GUIModel guiModel = parser.getGuiModel(); 
    7866        assertNotNull(guiModel); 
     
    8573    /** 
    8674     * TODO: comment 
    87      * 
     75     *  
    8876     * @param root 
    8977     * @param guiModel 
    9078     */ 
    91     private void dumpGUIElement(IGUIElement guiElement, 
    92                                 GUIModel    guiModel, 
    93                                 String      indent) 
    94     { 
     79    private void dumpGUIElement(IGUIElement guiElement, GUIModel guiModel, String indent) { 
    9580        assertTrue(guiElement instanceof JFCGUIElement); 
    96          
     81 
    9782        System.err.print(indent); 
    9883        System.err.print(guiElement); 
    99          
     84 
    10085        List<IGUIElement> children = guiModel.getChildren(guiElement); 
    101          
    102         if ((children != null) && (children.size() > 0)) 
    103         { 
     86 
     87        if ((children != null) && (children.size() > 0)) { 
    10488            System.err.println(" {"); 
    105              
    106             for (IGUIElement child: children) 
    107             { 
     89 
     90            for (IGUIElement child : children) { 
    10891                dumpGUIElement(child, guiModel, indent + "  "); 
    10992            } 
    110              
     93 
    11194            System.err.print(indent); 
    11295            System.err.print("}"); 
    11396        } 
    114          
     97 
    11598        System.err.println(); 
    11699    } 
Note: See TracChangeset for help on using the changeset viewer.