Renamed Interface::getProxyName to getProxyFqName

getStubName and getPassthroughName as well. This is
to allow a separate getProxyName that returns the name
only, so that they are consistent with getBaseName.

Test: compiles

Change-Id: I0c0d05523622209981d3337ca510127529ae4c38
diff --git a/Interface.h b/Interface.h
index 847348f..296a4ae 100644
--- a/Interface.h
+++ b/Interface.h
@@ -66,9 +66,9 @@
 
     std::string getBaseName() const;
 
-    FQName getProxyName() const;
-    FQName getStubName() const;
-    FQName getPassthroughName() const;
+    FQName getProxyFqName() const;
+    FQName getStubFqName() const;
+    FQName getPassthroughFqName() const;
 
     std::string getCppType(
             StorageMode mode,