blob: 5932ad45f2897a0b0f0c8cd724fb0b568410811f [file]
/*
* Copyright (c) 2011 Google Inc.
*
* All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse
* Public License v1.0 which accompanies this distribution, and is available at
*
* http://www.eclipse.org/legal/epl-v10.html
*/
package com.google.eclipse.protobuf.validation;
/**
* @author alruiz@google.com (Alex Ruiz)
*/
public class ProtobufJavaValidator extends AbstractProtobufJavaValidator {
// @Check
// public void checkGreetingStartsWithCapital(Greeting greeting) {
// if (!Character.isUpperCase(greeting.getName().charAt(0))) {
// warning("Name should start with a capital", MyDslPackage.GREETING__NAME);
// }
// }
}