829N/A/*
6321N/A * Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
829N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
829N/A *
829N/A * This code is free software; you can redistribute it and/or modify it
829N/A * under the terms of the GNU General Public License version 2 only, as
2362N/A * published by the Free Software Foundation. Oracle designates this
829N/A * particular file as subject to the "Classpath" exception as provided
2362N/A * by Oracle in the LICENSE file that accompanied this code.
829N/A *
829N/A * This code is distributed in the hope that it will be useful, but WITHOUT
829N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
829N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
829N/A * version 2 for more details (a copy is included in the LICENSE file that
829N/A * accompanied this code).
829N/A *
829N/A * You should have received a copy of the GNU General Public License version
829N/A * 2 along with this work; if not, write to the Free Software Foundation,
829N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
829N/A *
2362N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2362N/A * or visit www.oracle.com if you need additional information or have any
2362N/A * questions.
829N/A */
829N/Apackage com.sun.media.sound;
829N/A
829N/A/**
829N/A * This class is used to store information to describe soundbanks, instruments
829N/A * and samples. It is stored inside a "INFO" List Chunk inside DLS files.
829N/A *
829N/A * @author Karl Helgason
829N/A */
6321N/Apublic final class DLSInfo {
829N/A
829N/A /**
829N/A * (INAM) Title or subject.
829N/A */
829N/A public String name = "untitled";
829N/A /**
829N/A * (ICRD) Date of creation, the format is: YYYY-MM-DD.
829N/A * For example 2007-01-01 for 1. january of year 2007.
829N/A */
829N/A public String creationDate = null;
829N/A /**
829N/A * (IENG) Name of engineer who created the object.
829N/A */
829N/A public String engineers = null;
829N/A /**
829N/A * (IPRD) Name of the product which the object is intended for.
829N/A */
829N/A public String product = null;
829N/A /**
829N/A * (ICOP) Copyright information.
829N/A */
829N/A public String copyright = null;
829N/A /**
829N/A * (ICMT) General comments. Doesn't contain newline characters.
829N/A */
829N/A public String comments = null;
829N/A /**
829N/A * (ISFT) Name of software package used to create the file.
829N/A */
829N/A public String tools = null;
829N/A /**
829N/A * (IARL) Where content is archived.
829N/A */
829N/A public String archival_location = null;
829N/A /**
829N/A * (IART) Artists of original content.
829N/A */
829N/A public String artist = null;
829N/A /**
829N/A * (ICMS) Names of persons or orginizations who commissioned the file.
829N/A */
829N/A public String commissioned = null;
829N/A /**
829N/A * (IGNR) Genre of the work.
829N/A * Example: jazz, classical, rock, etc.
829N/A */
829N/A public String genre = null;
829N/A /**
829N/A * (IKEY) List of keyword that describe the content.
829N/A * Examples: FX, bird, piano, etc.
829N/A */
829N/A public String keywords = null;
829N/A /**
829N/A * (IMED) Describes original medium of the data.
829N/A * For example: record, CD, etc.
829N/A */
829N/A public String medium = null;
829N/A /**
829N/A * (ISBJ) Description of the content.
829N/A */
829N/A public String subject = null;
829N/A /**
829N/A * (ISRC) Name of person or orginization who supplied
829N/A * orginal material for the file.
829N/A */
829N/A public String source = null;
829N/A /**
829N/A * (ISRF) Source media for sample data is from.
829N/A * For example: CD, TV, etc.
829N/A */
829N/A public String source_form = null;
829N/A /**
829N/A * (ITCH) Technician who sample the file/object.
829N/A */
829N/A public String technician = null;
829N/A}