An open API service indexing awesome lists of open source software.

https://github.com/massimozappino/tagmycode-netbeans

Official NetBeans plugin for TagMyCode
https://github.com/massimozappino/tagmycode-netbeans

netbeans-plugin snippets-manager tagmycode

Last synced: 5 months ago
JSON representation

Official NetBeans plugin for TagMyCode

Awesome Lists containing this project

README

          

TagMyCode Official NetBeans Plugin
==================================

This is the official NetBeans plugin for TagMyCode
![screenshot](images/screenshot1.png)

## Getting started

### Consumer Id and Consumer secret
You need to create a Java class ```Secret.java``` into ```com/tagmycode/netbeans```

```java
package com.tagmycode.netbeans;

import com.tagmycode.plugin.AbstractSecret;

class Secret extends AbstractSecret {

@Override
public String getConsumerId() {
return "YOUR_CONSUMER_ID";
}

@Override
public String getConsumerSecret() {
return "YOUR_CONSUMER_SECRET";
}

}

```