aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/squareup/javawriter/builders/Name.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/squareup/javawriter/builders/Name.java')
-rw-r--r--src/main/java/com/squareup/javawriter/builders/Name.java36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/main/java/com/squareup/javawriter/builders/Name.java b/src/main/java/com/squareup/javawriter/builders/Name.java
new file mode 100644
index 0000000..36d1fb2
--- /dev/null
+++ b/src/main/java/com/squareup/javawriter/builders/Name.java
@@ -0,0 +1,36 @@
+/*
+ * Copyright (C) 2015 Square, Inc.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package com.squareup.javawriter.builders;
+
+import static com.google.common.base.Preconditions.checkNotNull;
+
+/**
+ * A member name. If necessary, the seed name will be mangled to cope with keyword collision and
+ * name collision. For example, given the seed name {@code public}, the generated code may use
+ * {@code public_} or {@code public1}.
+ */
+public final class Name {
+ public final String seed;
+
+ public Name(String seed) {
+ this.seed = checkNotNull(seed);
+ }
+
+ @Override public String toString() {
+ // TODO(jwilson): implement deferred naming so that `new Name("public")` yields "public_" etc.
+ return seed;
+ }
+}