Path: blob/aarch64-shenandoah-jdk8u272-b10/jdk/src/share/classes/com/sun/media/sound/DLSInfo.java
38924 views
/*1* Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.2* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.3*4* This code is free software; you can redistribute it and/or modify it5* under the terms of the GNU General Public License version 2 only, as6* published by the Free Software Foundation. Oracle designates this7* particular file as subject to the "Classpath" exception as provided8* by Oracle in the LICENSE file that accompanied this code.9*10* This code is distributed in the hope that it will be useful, but WITHOUT11* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or12* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License13* version 2 for more details (a copy is included in the LICENSE file that14* accompanied this code).15*16* You should have received a copy of the GNU General Public License version17* 2 along with this work; if not, write to the Free Software Foundation,18* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.19*20* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA21* or visit www.oracle.com if you need additional information or have any22* questions.23*/24package com.sun.media.sound;2526/**27* This class is used to store information to describe soundbanks, instruments28* and samples. It is stored inside a "INFO" List Chunk inside DLS files.29*30* @author Karl Helgason31*/32public final class DLSInfo {3334/**35* (INAM) Title or subject.36*/37public String name = "untitled";38/**39* (ICRD) Date of creation, the format is: YYYY-MM-DD.40* For example 2007-01-01 for 1. january of year 2007.41*/42public String creationDate = null;43/**44* (IENG) Name of engineer who created the object.45*/46public String engineers = null;47/**48* (IPRD) Name of the product which the object is intended for.49*/50public String product = null;51/**52* (ICOP) Copyright information.53*/54public String copyright = null;55/**56* (ICMT) General comments. Doesn't contain newline characters.57*/58public String comments = null;59/**60* (ISFT) Name of software package used to create the file.61*/62public String tools = null;63/**64* (IARL) Where content is archived.65*/66public String archival_location = null;67/**68* (IART) Artists of original content.69*/70public String artist = null;71/**72* (ICMS) Names of persons or orginizations who commissioned the file.73*/74public String commissioned = null;75/**76* (IGNR) Genre of the work.77* Example: jazz, classical, rock, etc.78*/79public String genre = null;80/**81* (IKEY) List of keyword that describe the content.82* Examples: FX, bird, piano, etc.83*/84public String keywords = null;85/**86* (IMED) Describes original medium of the data.87* For example: record, CD, etc.88*/89public String medium = null;90/**91* (ISBJ) Description of the content.92*/93public String subject = null;94/**95* (ISRC) Name of person or orginization who supplied96* orginal material for the file.97*/98public String source = null;99/**100* (ISRF) Source media for sample data is from.101* For example: CD, TV, etc.102*/103public String source_form = null;104/**105* (ITCH) Technician who sample the file/object.106*/107public String technician = null;108}109110111