| 1 |
|
|---|
| 2 |
/** |
|---|
| 3 |
* - SirdsAS3 - |
|---|
| 4 |
* RDS/SISステレオグラム生成ライブラリ |
|---|
| 5 |
* |
|---|
| 6 |
* RDSSupportDotPosition |
|---|
| 7 |
* SIRDS補助点位置の定義クラス |
|---|
| 8 |
* |
|---|
| 9 |
* @author dsler |
|---|
| 10 |
* @version 1.0.0 |
|---|
| 11 |
* @update 2009/07/02 |
|---|
| 12 |
* |
|---|
| 13 |
* Licensed under The MIT License |
|---|
| 14 |
* Copyright (c) 2009 dsler |
|---|
| 15 |
* Permission is hereby granted, free of charge, to any person obtaining a copy |
|---|
| 16 |
* of this software and associated documentation files (the "Software"), to deal |
|---|
| 17 |
* in the Software without restriction, including without limitation the rights |
|---|
| 18 |
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|---|
| 19 |
* copies of the Software, and to permit persons to whom the Software is |
|---|
| 20 |
* furnished to do so, subject to the following conditions: |
|---|
| 21 |
* The above copyright notice and this permission notice shall be included in |
|---|
| 22 |
* all copies or substantial portions of the Software. |
|---|
| 23 |
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|---|
| 24 |
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|---|
| 25 |
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|---|
| 26 |
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|---|
| 27 |
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|---|
| 28 |
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
|---|
| 29 |
* THE SOFTWARE. |
|---|
| 30 |
*/ |
|---|
| 31 |
|
|---|
| 32 |
package org.libspark.dsler.SirdsAS3 |
|---|
| 33 |
{ |
|---|
| 34 |
public class RDSSupportDotPosition |
|---|
| 35 |
{ |
|---|
| 36 |
public static const TOP:String = "top"; |
|---|
| 37 |
public static const CENTER:String = "center"; |
|---|
| 38 |
public static const BOTTOM:String = "bottom"; |
|---|
| 39 |
} |
|---|
| 40 |
} |
|---|