001 /* 002 * mesopotamia @mesopotamia.version@ 003 * Multilingual parser and repository. 004 * Copyright (C) 2005 Hammurapi Group 005 * 006 * This program is free software; you can redistribute it and/or 007 * modify it under the terms of the GNU Lesser General Public 008 * License as published by the Free Software Foundation; either 009 * version 2 of the License, or (at your option) any later version. 010 * 011 * This program is distributed in the hope that it will be useful, 012 * but WITHOUT ANY WARRANTY; without even the implied warranty of 013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 014 * Lesser General Public License for more details. 015 * 016 * You should have received a copy of the GNU Lesser General Public 017 * License along with this library; if not, write to the Free Software 018 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 019 * 020 * URL: http://http://www.hammurapi.biz 021 * e-Mail: support@hammurapi.biz 022 */ 023 package org.mesopotamia; 024 025 026 public class ExtensionLanguageSelector implements LanguageSelector { 027 028 private String extension; 029 private String language; 030 private String version; 031 private String description; 032 033 public String getExtension() { 034 return extension; 035 } 036 037 public void setExtension(String extension) { 038 this.extension = extension; 039 } 040 041 public String getLanguage() { 042 return language; 043 } 044 045 public void setLanguage(String language) { 046 this.language = language; 047 } 048 049 public String getVersion() { 050 return version; 051 } 052 053 public void setVersion(String version) { 054 this.version = version; 055 } 056 057 public String getDescription() { 058 return description; 059 } 060 061 public void setDescription(String description) { 062 this.description = description; 063 } 064 065 public Language select(Source source) { 066 return source.getName().endsWith(extension) ? new Language(language, version, description) : null; 067 } 068 069 }