/* Copyright 2012-2013 Andrey Zaytsev, Sergey Ivanov 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 net.meiolania.apps.habrahabr.data; public class CompanyFullData extends CompaniesData { protected String companyName; protected String companyUrl; protected String date; protected String industries; protected String location; protected String summary; protected String quantity; protected String management; protected String developmentStages; /** @return Company name */ public String getCompanyName() { return companyName; } public void setCompanyName(String companyName) { this.companyName = companyName; } public String getQuantity() { return quantity; } public void setQuantity(String quantity) { this.quantity = quantity; } public String getCompanyUrl() { return companyUrl; } public void setCompanyUrl(String companyUrl) { this.companyUrl = companyUrl; } public String getDate() { return date; } public void setDate(String date) { this.date = date; } public String getIndustries() { return industries; } public void setIndustries(String industries) { this.industries = industries; } public String getLocation() { return location; } public void setLocation(String location) { this.location = location; } public String getSummary() { return summary; } public void setSummary(String summary) { this.summary = summary; } public String getManagement() { return management; } public void setManagement(String management) { this.management = management; } public String getDevelopmentStages() { return developmentStages; } public void setDevelopmentStages(String developmentStages) { this.developmentStages = developmentStages; } }