• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package org.robolectric.shadows;
2 
3 import android.net.wifi.WifiConfiguration;
4 import org.robolectric.annotation.Implements;
5 import org.robolectric.annotation.RealObject;
6 
7 @Implements(WifiConfiguration.class)
8 public class ShadowWifiConfiguration {
9   @RealObject private WifiConfiguration realObject;
10 
11   /* Returns a copy of the {@link WifiConfiguration} it shadows. */
copy()12   public WifiConfiguration copy() {
13     return new WifiConfiguration(realObject);
14   }
15 }
16