All Downloads are FREE. Search and download functionalities are using the official Maven repository.

editor.SourceFileAttribute Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
package editor;

/**
 */
public class SourceFileAttribute
{
  private int _line;
  private String _fqn;

  public SourceFileAttribute( int line, String fqn )
  {
    _line = line;
    _fqn = fqn;
  }

  public int getLine()
  {
    return _line;
  }

  public String getFqn()
  {
    return _fqn;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy