wudsn-ide/com.wudsn.ide.gfx/src/com/wudsn/ide/gfx/converter/ConverterSourceFileDefinition.java
2018-12-30 16:29:54 +01:00

45 lines
1.3 KiB
Java

/**
* Copyright (C) 2009 - 2014 <a href="http://www.wudsn.com" target="_top">Peter Dell</a>
*
* This file is part of WUDSN IDE.
*
* WUDSN IDE is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* WUDSN IDE 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with WUDSN IDE. If not, see <http://www.gnu.org/licenses/>.
*/
package com.wudsn.ide.gfx.converter;
public final class ConverterSourceFileDefinition {
private int sourceFileId;
private String label;
ConverterSourceFileDefinition() {
}
public int getSourceFileId() {
return sourceFileId;
}
final void setSourceFileId(int sourceFileId) {
this.sourceFileId = sourceFileId;
}
public String getLabel() {
return label;
}
final void setLabel(String label) {
this.label = label;
}
}