You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
807 B
49 lines
807 B
9 years ago
|
/*
|
||
6 years ago
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
||
9 years ago
|
*
|
||
7 years ago
|
* This source code is licensed under the MIT license found in the
|
||
|
* LICENSE file in the root directory of this source tree.
|
||
9 years ago
|
*/
|
||
9 years ago
|
|
||
|
package codetoanalyze.java.checkers;
|
||
|
|
||
|
import com.facebook.infer.annotation.Expensive;
|
||
|
import com.facebook.infer.annotation.PerformanceCritical;
|
||
|
|
||
|
public interface ExpensiveInterfaceExample {
|
||
|
|
||
|
interface I {
|
||
|
|
||
|
@PerformanceCritical
|
||
|
public void m1();
|
||
|
|
||
|
public void m2();
|
||
|
}
|
||
|
|
||
|
class C {
|
||
|
|
||
|
public void m3() {}
|
||
|
|
||
|
public void m4() {}
|
||
|
}
|
||
|
|
||
|
@Expensive
|
||
|
public void m5();
|
||
|
|
||
8 years ago
|
interface I2 extends I {
|
||
6 years ago
|
@PerformanceCritical
|
||
|
void m3();
|
||
8 years ago
|
}
|
||
|
|
||
|
abstract class ImplementsInterface implements I2 {
|
||
|
|
||
6 years ago
|
@Expensive
|
||
|
void expensive() {}
|
||
8 years ago
|
|
||
6 years ago
|
@Override
|
||
|
public void m1() {
|
||
8 years ago
|
expensive();
|
||
|
}
|
||
|
}
|
||
9 years ago
|
}
|