If you think the Android project Amphitheatre listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/*
* Copyright (C) 2014 Jerrell Mardis/*www.java2s.com*/
*
* 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 com.jerrellmardis.amphitheatre.model.guessit;
import java.util.HashMap;
import java.util.Map;
publicclass Guess {
private String audioChannels;
private String audioCodec;
private String container;
privateInteger episodeNumber;
private String format;
private String mimetype;
private String releaseGroup;
private String screenSize;
privateInteger season;
private String series;
private String title;
private String type;
private String videoCodec;
privateInteger year;
private Map<String, Object> additionalProperties = new HashMap<String, Object>();
public String getAudioChannels() {
return audioChannels;
}
publicvoid setAudioChannels(String audioChannels) {
this.audioChannels = audioChannels;
}
public String getAudioCodec() {
return audioCodec;
}
publicvoid setAudioCodec(String audioCodec) {
this.audioCodec = audioCodec;
}
public String getContainer() {
return container;
}
publicvoid setContainer(String container) {
this.container = container;
}
publicInteger getEpisodeNumber() {
return episodeNumber;
}
publicvoid setEpisodeNumber(Integer episodeNumber) {
this.episodeNumber = episodeNumber;
}
public String getFormat() {
return format;
}
publicvoid setFormat(String format) {
this.format = format;
}
public String getMimetype() {
return mimetype;
}
publicvoid setMimetype(String mimetype) {
this.mimetype = mimetype;
}
public String getReleaseGroup() {
return releaseGroup;
}
publicvoid setReleaseGroup(String releaseGroup) {
this.releaseGroup = releaseGroup;
}
public String getScreenSize() {
return screenSize;
}
publicvoid setScreenSize(String screenSize) {
this.screenSize = screenSize;
}
publicInteger getSeason() {
return season;
}
publicvoid setSeason(Integer season) {
this.season = season;
}
public String getSeries() {
return series;
}
publicvoid setSeries(String series) {
this.series = series;
}
public String getTitle() {
return title;
}
publicvoid setTitle(String title) {
this.title = title;
}
public String getType() {
return type;
}
publicvoid setType(String type) {
this.type = type;
}
public String getVideoCodec() {
return videoCodec;
}
publicvoid setVideoCodec(String videoCodec) {
this.videoCodec = videoCodec;
}
publicInteger getYear() {
return year;
}
publicvoid setYear(Integer year) {
this.year = year;
}
public Map<String, Object> getAdditionalProperties() {
return this.additionalProperties;
}
publicvoid setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}