
de.psdev.licensesdialog.model.Notice Maven / Gradle / Ivy
/*
* Copyright 2013 Philip Schiffer
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.psdev.licensesdialog.model;
import de.psdev.licensesdialog.licenses.License;
import java.io.Serializable;
public class Notice implements Serializable {
private static final long serialVersionUID = -6257913944601445939L;
private String mName;
private String mUrl;
private String mCopyright;
private License mLicense;
//
public Notice() {
}
public Notice(final String name, final String url, final String copyright, final License license) {
mName = name;
mUrl = url;
mCopyright = copyright;
mLicense = license;
}
// Setter / Getter
public void setName(final String name) {
mName = name;
}
public void setUrl(final String url) {
mUrl = url;
}
public void setCopyright(final String copyright) {
mCopyright = copyright;
}
public void setLicense(final License license) {
mLicense = license;
}
public String getName() {
return mName;
}
public String getUrl() {
return mUrl;
}
public String getCopyright() {
return mCopyright;
}
public License getLicense() {
return mLicense;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy