create changelog entry
[debian/openrocket] / core / src / net / sf / openrocket / preset / loader / RocksimComponentFileColumnParser.java
1 package net.sf.openrocket.preset.loader;
2
3 import net.sf.openrocket.preset.TypedPropertyMap;
4
5 public interface RocksimComponentFileColumnParser {
6
7         /**
8          * Examine the array of column headers and configure parsing for this type. 
9          * 
10          * @param headers
11          */
12         public void configure( String[] headers );
13         
14         /**
15          * Examine the data array, parse the appropriate data and push into props.
16          * 
17          * @param data
18          * @param props
19          */
20         public void parse( String[] data, TypedPropertyMap props );
21         
22 }