[Dashg-commit] SF.net SVN: dashg:[26] trunk/dashg/src/com/mebigfatguy/dashg/ DashGLineNumberer.java
Status: Pre-Alpha
Brought to you by:
dbrosius
From: <dbr...@us...> - 2008-10-28 17:28:57
|
Revision: 26 http://dashg.svn.sourceforge.net/dashg/?rev=26&view=rev Author: dbrosius Date: 2008-10-28 17:28:47 +0000 (Tue, 28 Oct 2008) Log Message: ----------- interface for getting line numbers for the SourceWriter Added Paths: ----------- trunk/dashg/src/com/mebigfatguy/dashg/DashGLineNumberer.java Added: trunk/dashg/src/com/mebigfatguy/dashg/DashGLineNumberer.java =================================================================== --- trunk/dashg/src/com/mebigfatguy/dashg/DashGLineNumberer.java (rev 0) +++ trunk/dashg/src/com/mebigfatguy/dashg/DashGLineNumberer.java 2008-10-28 17:28:47 UTC (rev 26) @@ -0,0 +1,23 @@ +/* + * dashg - A debug symbols (-g) injector + * Copyright (C) 2008 Dave Brosius + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ +package com.mebigfatguy.dashg; + +public interface DashGLineNumberer { + int getLineNumber(); +} Property changes on: trunk/dashg/src/com/mebigfatguy/dashg/DashGLineNumberer.java ___________________________________________________________________ Added: svn:mime-type + text/plain Added: svn:eol-style + native This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |