1c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz/*
2c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz * Licensed to the Apache Software Foundation (ASF) under one or more
3c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz * contributor license agreements.  See the NOTICE file distributed with
4c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz * this work for additional information regarding copyright ownership.
5c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz * The ASF licenses this file to You under the Apache License, Version 2.0
6c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz * (the "License"); you may not use this file except in compliance with
7c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz * the License.  You may obtain a copy of the License at
8c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz *
9c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz *     http://www.apache.org/licenses/LICENSE-2.0
10c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz *
11c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz *  Unless required by applicable law or agreed to in writing, software
12c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz *  distributed under the License is distributed on an "AS IS" BASIS,
13c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz *
15c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz *  See the License for the specific language governing permissions and
16c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz *  limitations under the License.
17c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz */
18c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz
19c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertzpackage org.apache.harmony.jpda.tests.jdwp.share;
20c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz
21c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz/**
22c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz * Constants used by JDWP tests.
23c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz */
24c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertzpublic abstract class JDWPTestConstants {
25c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz
26c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz  public static final long NULL_OBJECT_ID = 0;
27c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz
28c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz  public static final long INVALID_OBJECT_ID = 0xdead;
29c688942db58f6e3bed189c1e5416a010f20f8bb8Sebastien Hertz}
30