blob: 2e775bb3dc2c9c7e03cd4b3a2f3b20d1a3c599fa [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 GraphicsCard {
private String name;
private String manufacturer;
private String chipType;
private String dacType;
private String deviceType;
private String temperature;
private String fanSpeed;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getManufacturer() {
return manufacturer;
}
public void setManufacturer(String manufacturer) {
this.manufacturer = manufacturer;
}
public String getChipType() {
return chipType;
}
public void setChipType(String chipType) {
this.chipType = chipType;
}
public String getDacType() {
return dacType;
}
public void setDacType(String dacType) {
this.dacType = dacType;
}
public String getDeviceType() {
return deviceType;
}
public void setDeviceType(String deviceType) {
this.deviceType = deviceType;
}
public String getTemperature() {
return temperature;
}
public void setTemperature(String temperature) {
this.temperature = temperature;
}
public String getFanSpeed() {
return fanSpeed;
}
public void setFanSpeed(String fanSpeed) {
this.fanSpeed = fanSpeed;
}
}