jdk/src/share/classes/com/sun/media/sound/SF2InstrumentRegion.java
changeset 18215 b2afd66ce6db
parent 5506 202f599c92aa
equal deleted inserted replaced
18214:e9eff0f1f1df 18215:b2afd66ce6db
     1 /*
     1 /*
     2  * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    27 /**
    27 /**
    28  * Soundfont instrument region.
    28  * Soundfont instrument region.
    29  *
    29  *
    30  * @author Karl Helgason
    30  * @author Karl Helgason
    31  */
    31  */
    32 public class SF2InstrumentRegion extends SF2Region {
    32 public final class SF2InstrumentRegion extends SF2Region {
    33 
    33 
    34     protected SF2Layer layer;
    34     SF2Layer layer;
    35 
    35 
    36     public SF2Layer getLayer() {
    36     public SF2Layer getLayer() {
    37         return layer;
    37         return layer;
    38     }
    38     }
    39 
    39