org.chromium.sdk/src/org/chromium/sdk/internal/protocolparser/JsonOverrideField.java
changeset 2 e4420d2515f1
equal deleted inserted replaced
1:ef76fc2ac88c 2:e4420d2515f1
       
     1 // Copyright (c) 2009 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.protocolparser;
       
     6 
       
     7 import java.lang.annotation.ElementType;
       
     8 import java.lang.annotation.Retention;
       
     9 import java.lang.annotation.RetentionPolicy;
       
    10 import java.lang.annotation.Target;
       
    11 
       
    12 /**
       
    13  * For field-reading method, specifies that it is overridden. Generally, field should not be
       
    14  * declared both in type and subtype. However this might be needed for declaring field in
       
    15  * base type for general use and in subtype for specifying subtype conditions.
       
    16  */
       
    17 @Target({ElementType.METHOD})
       
    18 @Retention(RetentionPolicy.RUNTIME)
       
    19 public @interface JsonOverrideField {
       
    20 }