001/* 002 * To change this template, choose Tools | Templates 003 * and open the template in the editor. 004 */ 005package armyc2.c5isr.web.render.utilities; 006 007import java.util.ArrayList; 008 009/** 010 * 011* 012 */ 013public class SymbolInfo { 014 015 private ArrayList<LineInfo> _LineInfo = null; 016 private ArrayList<TextInfo> _TextInfo = null; 017 018 public SymbolInfo() 019 { 020 021 } 022 public SymbolInfo(ArrayList<TextInfo> ti, ArrayList<LineInfo> li) 023 { 024 _LineInfo = li; 025 _TextInfo = ti; 026 } 027 028 public ArrayList<TextInfo> getTextInfoList() 029 { 030 return _TextInfo; 031 } 032 033 public ArrayList<LineInfo> getLineInfoList() 034 { 035 return _LineInfo; 036 } 037 038}