org.chromium.sdk/src/org/chromium/sdk/internal/protocol/data/BreakpointInfo.java
changeset 355 8726e95bcbba
equal deleted inserted replaced
354:0bceeb415e7f 355:8726e95bcbba
       
     1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
       
     2 // Use of this source code is governed by a BSD-style license that can be
       
     3 // found in the LICENSE file.
       
     4 
       
     5 package org.chromium.sdk.internal.protocol.data;
       
     6 
       
     7 import org.chromium.sdk.internal.protocolparser.JsonNullable;
       
     8 import org.chromium.sdk.internal.protocolparser.JsonOptionalField;
       
     9 import org.chromium.sdk.internal.protocolparser.JsonType;
       
    10 
       
    11 @JsonType
       
    12 public interface BreakpointInfo {
       
    13   Type type();
       
    14 
       
    15   @JsonOptionalField
       
    16   String script_name();
       
    17 
       
    18   @JsonOptionalField
       
    19   Long script_id();
       
    20 
       
    21   long number();
       
    22 
       
    23   long line();
       
    24 
       
    25   Long column();
       
    26 
       
    27   Long groupId();
       
    28 
       
    29   long hit_count();
       
    30 
       
    31   boolean active();
       
    32 
       
    33   @JsonNullable
       
    34   String condition();
       
    35 
       
    36   long ignoreCount();
       
    37 
       
    38   enum Type {
       
    39     scriptName,
       
    40     scriptId,
       
    41     function
       
    42   }
       
    43 }