org.chromium.sdk/src/org/chromium/sdk/internal/protocol/data/BreakpointInfo.java
changeset 355 8726e95bcbba
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/org.chromium.sdk/src/org/chromium/sdk/internal/protocol/data/BreakpointInfo.java	Mon Jun 07 16:51:19 2010 -0700
@@ -0,0 +1,43 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+package org.chromium.sdk.internal.protocol.data;
+
+import org.chromium.sdk.internal.protocolparser.JsonNullable;
+import org.chromium.sdk.internal.protocolparser.JsonOptionalField;
+import org.chromium.sdk.internal.protocolparser.JsonType;
+
+@JsonType
+public interface BreakpointInfo {
+  Type type();
+
+  @JsonOptionalField
+  String script_name();
+
+  @JsonOptionalField
+  Long script_id();
+
+  long number();
+
+  long line();
+
+  Long column();
+
+  Long groupId();
+
+  long hit_count();
+
+  boolean active();
+
+  @JsonNullable
+  String condition();
+
+  long ignoreCount();
+
+  enum Type {
+    scriptName,
+    scriptId,
+    function
+  }
+}