1// BEGIN LICENSE BLOCK
2// Version: CMPL 1.1
3//
4// The contents of this file are subject to the Cisco-style Mozilla Public
5// License Version 1.1 (the "License"); you may not use this file except
6// in compliance with the License.  You may obtain a copy of the License
7// at www.eclipse-clp.org/license.
8//
9// Software distributed under the License is distributed on an "AS IS"
10// basis, WITHOUT WARRANTY OF ANY KIND, either express or implied.  See
11// the License for the specific language governing rights and limitations
12// under the License.
13//
14// The Original Code is  The ECLiPSe Constraint Logic Programming System.
15// The Initial Developer of the Original Code is  Cisco Systems, Inc.
16// Portions created by the Initial Developer are
17// Copyright (C) 2006 Cisco Systems, Inc.  All Rights Reserved.
18//
19// Contributor(s): Josh Singer, Parc Technologies
20//                 Joachim Schimpf, CrossCore Optimization
21//
22// END LICENSE BLOCK
23
24//Title:        Java/ECLiPSe interface
25//Version:      $Id: Platform_x86_64_linux.java,v 1.1 2006/09/23 01:54:11 snovello Exp $
26//Description:  Encapsulated Singleton for platform-dependent code (linux on x86
27//              architecture).
28package com.parctechnologies.eclipse;
29
30class Platform_x86_64_linux extends Platform_UNIX
31{
32  public boolean supportsEmbeddedEclipse()
33  {
34    return(true);
35  }
36  public boolean supportsOutOfProcessEclipse()
37  {
38    return(true);
39  }
40
41  private final String ECLIPSE_PLATFORM_NAME = "x86_64_linux";
42  String getEclipsePlatformName()
43  {
44    return(ECLIPSE_PLATFORM_NAME);
45  }
46  private final String SHARED_LIBRARY_EXTENSION = "so";
47  String getSharedLibraryExtension()
48  {
49    return(SHARED_LIBRARY_EXTENSION);
50  }
51}
52