blob: 56e080867d11523272b8da572b38317ecee474f4 [file] [log] [blame]
/*
* Copyright 2016 javier.
*
* 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 org.jutils.jhardware.model;
/**
*
* @author javier
*/
public class Display {
private String name;
private String currentResolution;
private String refreshRate;
private String[] supportedResolutions;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getCurrentResolution() {
return currentResolution;
}
public void setCurrentResolution(String currentResolution) {
this.currentResolution = currentResolution;
}
public String getRefreshRate() {
return refreshRate;
}
public void setRefreshRate(String refreshRate) {
this.refreshRate = refreshRate;
}
public String[] getSupportedResolutions() {
return supportedResolutions;
}
public void setSupportedResolutions(String[] supportedResolutions) {
this.supportedResolutions = supportedResolutions;
}
}