Skip to content
This repository has been archived by the owner on Apr 15, 2023. It is now read-only.

massimozappino/tagmycode-netbeans

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

60 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TagMyCode Official NetBeans Plugin

This is the official NetBeans plugin for TagMyCode screenshot

Getting started

Consumer Id and Consumer secret

You need to create a Java class Secret.java into com/tagmycode/netbeans

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";
    }

}