/* * Copyright (c) 2012 Sam Harwell, Tunnel Vision Laboratories LLC * All rights reserved. * * The source code of this document is proprietary work, and is not licensed for * distribution. For information about licensing, contact Sam Harwell at: * sam@tunnelvisionlabs.com */ package org.tvl.goworks.editor.go; import java.nio.charset.Charset; import org.netbeans.api.editor.mimelookup.MimeRegistration; import org.netbeans.spi.queries.FileEncodingQueryImplementation; import org.openide.filesystems.FileObject; import org.tvl.goworks.editor.GoEditorKit; /** * * @author Sam Harwell */ @MimeRegistration(mimeType=GoEditorKit.GO_MIME_TYPE, service=FileEncodingQueryImplementation.class) public class GoFileEncodingQueryImplementation extends FileEncodingQueryImplementation { private static final String UTF_8 = "UTF-8"; // NOI18N @Override public Charset getEncoding(FileObject file) { if (file.getMIMEType().equals(GoEditorKit.GO_MIME_TYPE)) { return Charset.forName(UTF_8); } return null; } }