]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/ModuleEditor/src/org/tianocore/common/DataType.java
Initial import.
[mirror_edk2.git] / Tools / Source / ModuleEditor / src / org / tianocore / common / DataType.java
1 /** @file
2
3 The file is used to define all used final variables
4
5 Copyright (c) 2006, Intel Corporation
6 All rights reserved. This program and the accompanying materials
7 are licensed and made available under the terms and conditions of the BSD License
8 which accompanies this distribution. The full text of the license may be found at
9 http://opensource.org/licenses/bsd-license.php
10
11 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
12 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
13
14 **/
15 package org.tianocore.common;
16
17 /**
18 The class is used to define all used final variables
19
20 @since ModuleEditor 1.0
21
22 **/
23 public class DataType {
24
25 /**
26
27 @param args
28
29 **/
30 public static void main(String[] args) {
31 // TODO Auto-generated method stub
32
33 }
34
35 //
36 // Define all used final variables
37 //
38 public static final String DOS_LINE_SEPARATOR = "\r\n";
39
40 public static final String UNXI_LINE_SEPARATOR = "\n";
41
42 public static final String EMPTY_SELECT_ITEM = "----";
43
44 }